kplot 1.1.26__tar.gz → 1.1.28__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {kplot-1.1.26 → kplot-1.1.28}/PKG-INFO +1 -1
- {kplot-1.1.26 → kplot-1.1.28}/pyproject.toml +1 -1
- {kplot-1.1.26 → kplot-1.1.28}/src/kplot/movie.py +1 -1
- {kplot-1.1.26 → kplot-1.1.28}/src/kplot/plot.py +2 -1
- {kplot-1.1.26 → kplot-1.1.28}/README.md +0 -0
- {kplot-1.1.26 → kplot-1.1.28}/src/kplot/__init__.py +0 -0
- {kplot-1.1.26 → kplot-1.1.28}/src/kplot/axes.py +0 -0
- {kplot-1.1.26 → kplot-1.1.28}/src/kplot/cmaps.py +0 -0
- {kplot-1.1.26 → kplot-1.1.28}/src/kplot/image.py +0 -0
- {kplot-1.1.26 → kplot-1.1.28}/src/kplot/styles/example.mpl +0 -0
- {kplot-1.1.26 → kplot-1.1.28}/src/kplot/styles/publication.mpl +0 -0
- {kplot-1.1.26 → kplot-1.1.28}/src/kplot/threeD/__init__.py +0 -0
- {kplot-1.1.26 → kplot-1.1.28}/src/kplot/threeD/slider_images.py +0 -0
- {kplot-1.1.26 → kplot-1.1.28}/src/kplot/utils.py +0 -0
|
@@ -44,7 +44,7 @@ def func_video(
|
|
|
44
44
|
updater(i)
|
|
45
45
|
fig.savefig(f"{frames}/{video_name}/{str(i).zfill(ndigits)}.png", dpi=dpi)
|
|
46
46
|
# make the video
|
|
47
|
-
ffmpeg(video_name, source=frames, destination=destination, fps=fps)
|
|
47
|
+
ffmpeg(video_name, source=f"{frames}/{video_name}/", destination=destination, fps=fps)
|
|
48
48
|
system(f'rm -r {frames}')
|
|
49
49
|
def line_video(
|
|
50
50
|
xs, ys,
|
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
# !==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==
|
|
4
4
|
from kplot.axes import subplots
|
|
5
5
|
|
|
6
|
+
from typing import Optional
|
|
6
7
|
from collections.abc import Iterable
|
|
7
|
-
from kbasic.typing import Number
|
|
8
|
+
from kbasic.typing import Number
|
|
8
9
|
from numpy import asarray, hstack, column_stack, newaxis, concatenate, hypot, diff,\
|
|
9
10
|
nanmin, nanmax, ndarray, log10
|
|
10
11
|
from matplotlib.figure import Figure
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|