manim 0.17.3__py3-none-any.whl → 0.18.0.post0__py3-none-any.whl
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.
Potentially problematic release.
This version of manim might be problematic. Click here for more details.
- manim/__init__.py +1 -0
- manim/__main__.py +2 -0
- manim/_config/__init__.py +0 -1
- manim/_config/logger_utils.py +1 -0
- manim/_config/utils.py +14 -5
- manim/animation/changing.py +9 -5
- manim/animation/creation.py +8 -3
- manim/animation/indication.py +4 -4
- manim/animation/speedmodifier.py +2 -4
- manim/animation/updaters/mobject_update_utils.py +134 -16
- manim/camera/camera.py +31 -17
- manim/cli/checkhealth/__init__.py +0 -0
- manim/cli/checkhealth/checks.py +173 -0
- manim/cli/checkhealth/commands.py +81 -0
- manim/cli/render/global_options.py +6 -0
- manim/constants.py +58 -54
- manim/mobject/geometry/__init__.py +1 -0
- manim/mobject/geometry/arc.py +126 -91
- manim/mobject/geometry/boolean_ops.py +6 -10
- manim/mobject/geometry/labeled.py +155 -0
- manim/mobject/geometry/line.py +66 -50
- manim/mobject/geometry/polygram.py +23 -15
- manim/mobject/geometry/shape_matchers.py +24 -15
- manim/mobject/geometry/tips.py +62 -40
- manim/mobject/graph.py +3 -4
- manim/mobject/graphing/coordinate_systems.py +190 -139
- manim/mobject/graphing/number_line.py +5 -2
- manim/mobject/graphing/probability.py +4 -3
- manim/mobject/graphing/scale.py +7 -7
- manim/mobject/logo.py +108 -22
- manim/mobject/matrix.py +33 -37
- manim/mobject/mobject.py +327 -260
- manim/mobject/opengl/opengl_image_mobject.py +1 -1
- manim/mobject/opengl/opengl_mobject.py +18 -12
- manim/mobject/opengl/opengl_point_cloud_mobject.py +1 -1
- manim/mobject/opengl/opengl_surface.py +1 -1
- manim/mobject/opengl/opengl_vectorized_mobject.py +21 -17
- manim/mobject/svg/brace.py +3 -1
- manim/mobject/svg/svg_mobject.py +9 -11
- manim/mobject/table.py +50 -54
- manim/mobject/text/numbers.py +48 -6
- manim/mobject/text/tex_mobject.py +8 -12
- manim/mobject/text/text_mobject.py +32 -24
- manim/mobject/three_d/three_d_utils.py +13 -8
- manim/mobject/three_d/three_dimensions.py +61 -43
- manim/mobject/types/image_mobject.py +5 -4
- manim/mobject/types/point_cloud_mobject.py +8 -6
- manim/mobject/types/vectorized_mobject.py +385 -258
- manim/mobject/vector_field.py +19 -11
- manim/plugins/import_plugins.py +1 -1
- manim/plugins/plugins_flags.py +1 -6
- manim/renderer/shader.py +2 -2
- manim/scene/scene.py +15 -7
- manim/scene/scene_file_writer.py +1 -2
- manim/scene/three_d_scene.py +1 -1
- manim/scene/vector_space_scene.py +17 -7
- manim/typing.py +133 -0
- manim/utils/bezier.py +267 -83
- manim/utils/color/AS2700.py +234 -0
- manim/utils/color/BS381.py +315 -0
- manim/utils/color/X11.py +530 -0
- manim/utils/color/XKCD.py +949 -0
- manim/utils/color/__init__.py +58 -0
- manim/utils/color/core.py +1036 -0
- manim/utils/color/manim_colors.py +220 -0
- manim/utils/docbuild/autocolor_directive.py +92 -0
- manim/utils/docbuild/manim_directive.py +40 -6
- manim/utils/file_ops.py +1 -1
- manim/utils/hashing.py +1 -1
- manim/utils/iterables.py +1 -1
- manim/utils/rate_functions.py +33 -0
- manim/utils/simple_functions.py +0 -18
- manim/utils/space_ops.py +55 -42
- manim/utils/testing/frames_comparison.py +9 -0
- manim/utils/tex.py +2 -0
- manim/utils/tex_file_writing.py +29 -2
- {manim-0.17.3.dist-info → manim-0.18.0.post0.dist-info}/METADATA +14 -14
- {manim-0.17.3.dist-info → manim-0.18.0.post0.dist-info}/RECORD +82 -71
- {manim-0.17.3.dist-info → manim-0.18.0.post0.dist-info}/WHEEL +1 -1
- manim/communitycolors.py +0 -9
- manim/utils/color.py +0 -552
- {manim-0.17.3.dist-info → manim-0.18.0.post0.dist-info}/LICENSE +0 -0
- {manim-0.17.3.dist-info → manim-0.18.0.post0.dist-info}/LICENSE.community +0 -0
- {manim-0.17.3.dist-info → manim-0.18.0.post0.dist-info}/entry_points.txt +0 -0
|
@@ -5,6 +5,8 @@ import inspect
|
|
|
5
5
|
from pathlib import Path
|
|
6
6
|
from typing import Callable
|
|
7
7
|
|
|
8
|
+
import cairo
|
|
9
|
+
import pytest
|
|
8
10
|
from _pytest.fixtures import FixtureRequest
|
|
9
11
|
|
|
10
12
|
from manim import Scene
|
|
@@ -25,6 +27,7 @@ from ._test_class_makers import (
|
|
|
25
27
|
SCENE_PARAMETER_NAME = "scene"
|
|
26
28
|
_tests_root_dir_path = Path(__file__).absolute().parents[2]
|
|
27
29
|
PATH_CONTROL_DATA = _tests_root_dir_path / Path("control_data", "graphical_units_data")
|
|
30
|
+
MIN_CAIRO_VERSION = 11800
|
|
28
31
|
|
|
29
32
|
|
|
30
33
|
def frames_comparison(
|
|
@@ -81,6 +84,12 @@ def frames_comparison(
|
|
|
81
84
|
@functools.wraps(tested_scene_construct)
|
|
82
85
|
# The "request" parameter is meant to be used as a fixture by pytest. See below.
|
|
83
86
|
def wrapper(*args, request: FixtureRequest, tmp_path, **kwargs):
|
|
87
|
+
# check for cairo version
|
|
88
|
+
if (
|
|
89
|
+
renderer_class is CairoRenderer
|
|
90
|
+
and cairo.cairo_version() < MIN_CAIRO_VERSION
|
|
91
|
+
):
|
|
92
|
+
pytest.skip("Cairo version is too old. Skipping cairo graphical tests.")
|
|
84
93
|
# Wraps the test_function to a construct method, to "freeze" the eventual additional arguments (parametrizations fixtures).
|
|
85
94
|
construct = functools.partial(tested_scene_construct, *args, **kwargs)
|
|
86
95
|
|
manim/utils/tex.py
CHANGED
|
@@ -139,6 +139,7 @@ class TexTemplate:
|
|
|
139
139
|
else:
|
|
140
140
|
self.preamble += "\n" + txt
|
|
141
141
|
self._rebuild()
|
|
142
|
+
return self
|
|
142
143
|
|
|
143
144
|
def add_to_document(self, txt: str):
|
|
144
145
|
"""Adds txt to the TeX template just after \\begin{document}, e.g. ``\\boldmath``
|
|
@@ -150,6 +151,7 @@ class TexTemplate:
|
|
|
150
151
|
"""
|
|
151
152
|
self.post_doc_commands += "\n" + txt + "\n"
|
|
152
153
|
self._rebuild()
|
|
154
|
+
return self
|
|
153
155
|
|
|
154
156
|
def get_texcode_for_expression(self, expression: str):
|
|
155
157
|
"""Inserts expression verbatim into TeX template.
|
manim/utils/tex_file_writing.py
CHANGED
|
@@ -13,6 +13,7 @@ import os
|
|
|
13
13
|
import re
|
|
14
14
|
import unicodedata
|
|
15
15
|
from pathlib import Path
|
|
16
|
+
from typing import Iterable
|
|
16
17
|
|
|
17
18
|
from manim.utils.tex import TexTemplate
|
|
18
19
|
|
|
@@ -51,19 +52,28 @@ def tex_to_svg_file(
|
|
|
51
52
|
if tex_template is None:
|
|
52
53
|
tex_template = config["tex_template"]
|
|
53
54
|
tex_file = generate_tex_file(expression, environment, tex_template)
|
|
55
|
+
|
|
56
|
+
# check if svg already exists
|
|
57
|
+
svg_file = tex_file.with_suffix(".svg")
|
|
58
|
+
if svg_file.exists():
|
|
59
|
+
return svg_file
|
|
60
|
+
|
|
54
61
|
dvi_file = compile_tex(
|
|
55
62
|
tex_file,
|
|
56
63
|
tex_template.tex_compiler,
|
|
57
64
|
tex_template.output_format,
|
|
58
65
|
)
|
|
59
|
-
|
|
66
|
+
svg_file = convert_to_svg(dvi_file, tex_template.output_format)
|
|
67
|
+
if not config["no_latex_cleanup"]:
|
|
68
|
+
delete_nonsvg_files()
|
|
69
|
+
return svg_file
|
|
60
70
|
|
|
61
71
|
|
|
62
72
|
def generate_tex_file(
|
|
63
73
|
expression: str,
|
|
64
74
|
environment: str | None = None,
|
|
65
75
|
tex_template: TexTemplate | None = None,
|
|
66
|
-
):
|
|
76
|
+
) -> Path:
|
|
67
77
|
"""Takes a tex expression (and an optional tex environment),
|
|
68
78
|
and returns a fully formed tex file ready for compilation.
|
|
69
79
|
|
|
@@ -251,6 +261,23 @@ def convert_to_svg(dvi_file: Path, extension: str, page: int = 1):
|
|
|
251
261
|
return result
|
|
252
262
|
|
|
253
263
|
|
|
264
|
+
def delete_nonsvg_files(additional_endings: Iterable[str] = ()) -> None:
|
|
265
|
+
"""Deletes every file that does not have a suffix in ``(".svg", ".tex", *additional_endings)``
|
|
266
|
+
|
|
267
|
+
Parameters
|
|
268
|
+
----------
|
|
269
|
+
additional_endings
|
|
270
|
+
Additional endings to whitelist
|
|
271
|
+
"""
|
|
272
|
+
|
|
273
|
+
tex_dir = config.get_dir("tex_dir")
|
|
274
|
+
file_suffix_whitelist = {".svg", ".tex", *additional_endings}
|
|
275
|
+
|
|
276
|
+
for f in tex_dir.iterdir():
|
|
277
|
+
if f.suffix not in file_suffix_whitelist:
|
|
278
|
+
f.unlink()
|
|
279
|
+
|
|
280
|
+
|
|
254
281
|
def print_all_tex_errors(log_file: Path, tex_compiler: str, tex_file: Path) -> None:
|
|
255
282
|
if not log_file.exists():
|
|
256
283
|
raise RuntimeError(
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: manim
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.18.0.post0
|
|
4
4
|
Summary: Animation engine for explanatory math videos.
|
|
5
5
|
Home-page: https://www.manim.community/
|
|
6
6
|
License: MIT
|
|
7
7
|
Author: The Manim Community Developers
|
|
8
8
|
Author-email: contact@manim.community
|
|
9
|
-
Requires-Python: >=3.8,<3.
|
|
9
|
+
Requires-Python: >=3.8,<3.13
|
|
10
10
|
Classifier: Development Status :: 4 - Beta
|
|
11
11
|
Classifier: License :: OSI Approved :: MIT License
|
|
12
12
|
Classifier: Natural Language :: English
|
|
@@ -15,10 +15,7 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
19
|
Classifier: Topic :: Multimedia :: Graphics
|
|
23
20
|
Classifier: Topic :: Multimedia :: Video
|
|
24
21
|
Classifier: Topic :: Scientific/Engineering
|
|
@@ -29,31 +26,34 @@ Requires-Dist: Pygments (>=2.10.0,<3.0.0)
|
|
|
29
26
|
Requires-Dist: backports.cached-property (>=1.0.1,<2.0.0) ; python_version < "3.8"
|
|
30
27
|
Requires-Dist: click (>=7.2,<=9.0)
|
|
31
28
|
Requires-Dist: click-default-group (>=1.2.2,<2.0.0)
|
|
32
|
-
Requires-Dist: cloup (>=0.13
|
|
33
|
-
Requires-Dist: colour (>=0.1.5,<0.2.0)
|
|
29
|
+
Requires-Dist: cloup (>=0.13,<2.2)
|
|
34
30
|
Requires-Dist: dearpygui (>=1.3.1,<2.0.0) ; extra == "gui"
|
|
35
31
|
Requires-Dist: decorator (>=5.0.7,<6.0.0)
|
|
36
32
|
Requires-Dist: importlib-metadata (>=4.10.0,<5.0.0) ; python_version < "3.8"
|
|
37
33
|
Requires-Dist: isosurfaces (==0.1.0)
|
|
38
34
|
Requires-Dist: jupyterlab (>=3.0,<4.0) ; extra == "jupyterlab"
|
|
39
|
-
Requires-Dist: manimpango (>=0.
|
|
35
|
+
Requires-Dist: manimpango (>=0.5.0,<1.0.0)
|
|
40
36
|
Requires-Dist: mapbox-earcut (>=1.0.0,<2.0.0)
|
|
41
37
|
Requires-Dist: moderngl (>=5.6.3,<6.0.0)
|
|
42
38
|
Requires-Dist: moderngl-window (>=2.3.0,<3.0.0)
|
|
43
|
-
Requires-Dist: networkx (>=2.5,<3.
|
|
39
|
+
Requires-Dist: networkx (>=2.5,<3.3)
|
|
44
40
|
Requires-Dist: notebook (>=6.4,<7.0) ; extra == "jupyterlab"
|
|
45
|
-
Requires-Dist: numpy (>=1.
|
|
41
|
+
Requires-Dist: numpy (>=1.22,<2.0) ; python_version < "3.12"
|
|
42
|
+
Requires-Dist: numpy (>=1.26,<2.0) ; python_version >= "3.12"
|
|
46
43
|
Requires-Dist: pycairo (>=1.21,<2.0)
|
|
47
44
|
Requires-Dist: pydub (>=0.25.1,<0.26.0)
|
|
48
45
|
Requires-Dist: requests (>=2.26.0,<3.0.0)
|
|
49
46
|
Requires-Dist: rich (>=6.0,!=12.0.0)
|
|
50
|
-
Requires-Dist: scipy (>=1.
|
|
47
|
+
Requires-Dist: scipy (>=1.11,<2.0) ; python_version >= "3.12"
|
|
48
|
+
Requires-Dist: scipy (>=1.7.3,<2.0.0) ; python_version < "3.12"
|
|
51
49
|
Requires-Dist: screeninfo (>=0.8,<0.9)
|
|
52
|
-
Requires-Dist: skia-pathops (>=0.7.0,<0.8.0)
|
|
50
|
+
Requires-Dist: skia-pathops (>=0.7.0,<0.8.0) ; python_version < "3.12"
|
|
51
|
+
Requires-Dist: skia-pathops (>=0.8.0.post1,<0.9.0) ; python_version >= "3.12"
|
|
53
52
|
Requires-Dist: srt (>=3.5.0,<4.0.0)
|
|
54
53
|
Requires-Dist: svgelements (>=1.8.0,<2.0.0)
|
|
55
54
|
Requires-Dist: tqdm (>=4.62.3,<5.0.0)
|
|
56
|
-
Requires-Dist:
|
|
55
|
+
Requires-Dist: typing-extensions (>=4.7.1,<5.0.0)
|
|
56
|
+
Requires-Dist: watchdog (>=2.1,<=3.0.0)
|
|
57
57
|
Project-URL: Bug Tracker, https://github.com/ManimCommunity/manim/issues
|
|
58
58
|
Project-URL: Changelog, https://docs.manim.community/en/stable/changelog.html
|
|
59
59
|
Project-URL: Documentation, https://docs.manim.community/
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
manim/__init__.py,sha256=
|
|
2
|
-
manim/__main__.py,sha256=
|
|
3
|
-
manim/_config/__init__.py,sha256=
|
|
1
|
+
manim/__init__.py,sha256=WvvgOfvYKuHnWwlLQSnBHy_doBQJBclA854nGvZiTeY,3581
|
|
2
|
+
manim/__main__.py,sha256=JeYi5XAOPAoPHJL5PNsjcTFr9h1GEXu5MKYmF43W05g,1471
|
|
3
|
+
manim/_config/__init__.py,sha256=kzRkoQfCPmseG9lK_5H36IIwbHafFLS39H6SspkspjM,2597
|
|
4
4
|
manim/_config/cli_colors.py,sha256=DZUQ9jB5DcMoQ6luMieQPUEJtYSAKhcbNeAeC_4mqyI,1660
|
|
5
5
|
manim/_config/default.cfg,sha256=SwsaF5_KwQhE0BiINlPkSEHHt13BbRDWEuDlGiWIF2s,5388
|
|
6
|
-
manim/_config/logger_utils.py,sha256=
|
|
7
|
-
manim/_config/utils.py,sha256=
|
|
6
|
+
manim/_config/logger_utils.py,sha256=3JySxIzgvE5JhDmW1zbnAyA4YSxF0U_WbxXDLhUDvEk,5368
|
|
7
|
+
manim/_config/utils.py,sha256=nrrHZC8SwWGXq-PgsqG5gdjoONnPw5bwwrTq5J6B-LA,57638
|
|
8
8
|
manim/animation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
manim/animation/animation.py,sha256=8RuPe0xI6R5jV8cv2RAnlr0DI2SnJo8xXE7eiUXHrP4,19973
|
|
10
|
-
manim/animation/changing.py,sha256=
|
|
10
|
+
manim/animation/changing.py,sha256=GdksMFYiXcl_6X3Hnjfr-SNiHJ9W2hQOcuBFj1beuFk,5523
|
|
11
11
|
manim/animation/composition.py,sha256=pVxeuCisd99AX_OU5Bz6l96RgYgyFyOtiHN2L648xoU,13345
|
|
12
|
-
manim/animation/creation.py,sha256=
|
|
12
|
+
manim/animation/creation.py,sha256=1yf18wPiIerrB97l7bmkUFPKRihSQ-GD90rEFGsHvnU,20064
|
|
13
13
|
manim/animation/fading.py,sha256=OJo3QKQdgMN2hqVdL0LNT3H_9xyg-Ont9vH5pjDCQW4,5824
|
|
14
14
|
manim/animation/growing.py,sha256=pEUwKG8UPFNpi1pFJBu6dpvIQr91kXos0oQfVgsLaOI,7154
|
|
15
|
-
manim/animation/indication.py,sha256=
|
|
15
|
+
manim/animation/indication.py,sha256=BmIuyC9IRdKeGJB9eumvhIAms7HR1Ft5qrSAVuhjbns,21206
|
|
16
16
|
manim/animation/movement.py,sha256=aMKTWFdOsNpBiSAuQyMhkYk4VogpCFqgOyxFsA7zjUQ,5086
|
|
17
17
|
manim/animation/numbers.py,sha256=FmpuRQZ6UB_IUJ8eUwHIpBz9dsZnGumIwjlLVc4wQsQ,1427
|
|
18
18
|
manim/animation/rotation.py,sha256=nV-nxJlPDa1pkGIOE_lsdkEOL0nwbEgBBVmHPmo-xWw,3228
|
|
19
19
|
manim/animation/specialized.py,sha256=ZFo0NkRAry9l87zHJIwFJXJBM6IpU25otvAtD6iRcQE,2923
|
|
20
|
-
manim/animation/speedmodifier.py,sha256=
|
|
20
|
+
manim/animation/speedmodifier.py,sha256=WuGCCEUeJp3PAizs-hMo6NSmuO2cEd-FxpXzDNa9-UU,9788
|
|
21
21
|
manim/animation/transform.py,sha256=HQW36dAwmx96zPRkEaT-uV3t7rK83IRSmME3FOY2I_M,30617
|
|
22
22
|
manim/animation/transform_matching_parts.py,sha256=EX8qi5Ssyaa0Hs-LqkhEf3u5wbY2RSYA42MklKzZ6NA,10413
|
|
23
23
|
manim/animation/updaters/__init__.py,sha256=jgKFveRzPwFLbVHkTfJrv3qDIrgD-yuFKYsMRkwpPJc,169
|
|
24
|
-
manim/animation/updaters/mobject_update_utils.py,sha256=
|
|
24
|
+
manim/animation/updaters/mobject_update_utils.py,sha256=dJ2pNL0_1zYmA0FYiUC2rjaJyFsE6T5sjmTgzWpKn6k,6653
|
|
25
25
|
manim/animation/updaters/update.py,sha256=FDiqMrQDU6BxXa4WXfOEahIUSE2haZ6vO4j_xL_XYbM,1719
|
|
26
26
|
manim/camera/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
manim/camera/camera.py,sha256=
|
|
27
|
+
manim/camera/camera.py,sha256=CZVd2cChXwe311Q-zJwtFEjmv09c7sg7AtxAtXqx9DQ,45131
|
|
28
28
|
manim/camera/mapping_camera.py,sha256=x0xmSiSwEH2so8bAfxIUW_l6ZdfxYD1FFDktZhFCLP8,4995
|
|
29
29
|
manim/camera/moving_camera.py,sha256=D1EIEqnHtWodqyZtO9AMiZ-IMQP2G4ZfMe9nm9kwy_A,8102
|
|
30
30
|
manim/camera/multi_camera.py,sha256=IbD0O_-MQgbuXhsODB8VU-19w1ExSEVxJXMw2tRccBQ,3382
|
|
@@ -32,6 +32,9 @@ manim/camera/three_d_camera.py,sha256=a8V1W7dqa-NuNoqiRdpWYlyE65rPxvoHKonKIPG-gg
|
|
|
32
32
|
manim/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
33
|
manim/cli/cfg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
34
|
manim/cli/cfg/group.py,sha256=ddf__u5GzjT7vL0Ah8GA-6gJLHTXPsDkLhcXLk-fDZE,9688
|
|
35
|
+
manim/cli/checkhealth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
manim/cli/checkhealth/checks.py,sha256=cBJu4zeBLayRgQCsdNq6Eq0uTe9cp34GXmblzBLaOaE,6080
|
|
37
|
+
manim/cli/checkhealth/commands.py,sha256=9faFwrCgMwAU2nmf7xJM4YBExblMGMfl42u4AKHBukY,2767
|
|
35
38
|
manim/cli/default_group.py,sha256=lUXuU8M0hH4UV0lPrb9DY8w0GZYJBD3XT_nnecFToH8,2184
|
|
36
39
|
manim/cli/init/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
40
|
manim/cli/init/commands.py,sha256=5l9W3XEQcZK88cXL4GHIInn0PsyW7zVZtAbQQfEbf3k,5833
|
|
@@ -42,71 +45,71 @@ manim/cli/plugins/commands.py,sha256=jrYGeMpEwyvAJSiyqy9klSW_WsJhV5LTScHxcDA1X6c
|
|
|
42
45
|
manim/cli/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
46
|
manim/cli/render/commands.py,sha256=f6Dh3NCY5_3SrcfqsNhQjfdqATZlK54fWg1SJOCM9Qc,4856
|
|
44
47
|
manim/cli/render/ease_of_access_options.py,sha256=hSECXc6AL__FqYq8XCKr-Ylvnp0aVPFWRKzMrdgPrgU,1019
|
|
45
|
-
manim/cli/render/global_options.py,sha256=
|
|
48
|
+
manim/cli/render/global_options.py,sha256=QTObSJiASYOVDVn1SjyiKRpieaR3KBu6iVRlNOUGIyY,3009
|
|
46
49
|
manim/cli/render/output_options.py,sha256=-usXVN_f-BbtyVszJJh7Ns4i1MAIYtyKe5Q5NutH0Rk,1037
|
|
47
50
|
manim/cli/render/render_options.py,sha256=ZcDFphG8DwrYWjGjeTK_f6E0QitnLkCvKJqXJEHJajs,3874
|
|
48
|
-
manim/
|
|
49
|
-
manim/constants.py,sha256=mNLkuS8l3H0HdSWcF7kOtThiRAOpQ9baFOj9gKcx0Zw,7442
|
|
51
|
+
manim/constants.py,sha256=QJgNKUaIGcmBN_9-RifNc9vMZ2U686CNrq3QEMP_DXU,7275
|
|
50
52
|
manim/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
53
|
manim/gui/gui.py,sha256=twZFJM9nNoGt59FLV6Y5EMsh-3TZ-8Du_Byqo8ES_KQ,2671
|
|
52
54
|
manim/mobject/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
55
|
manim/mobject/frame.py,sha256=zGFMMmMtgYwnXX47DLJs3qaCCE-NPFyAjfV0NTzHEb8,878
|
|
54
|
-
manim/mobject/geometry/__init__.py,sha256=
|
|
55
|
-
manim/mobject/geometry/arc.py,sha256=
|
|
56
|
-
manim/mobject/geometry/boolean_ops.py,sha256=
|
|
57
|
-
manim/mobject/geometry/
|
|
58
|
-
manim/mobject/geometry/
|
|
59
|
-
manim/mobject/geometry/
|
|
60
|
-
manim/mobject/geometry/
|
|
61
|
-
manim/mobject/
|
|
56
|
+
manim/mobject/geometry/__init__.py,sha256=2coukoxKXDE6LmqDDcF_chBZPYYb6oe3y4T8duV8Lvk,191
|
|
57
|
+
manim/mobject/geometry/arc.py,sha256=zQa8HiclV3ffcoHEcNElYz7IuJp345TOvluYtQgZcU8,42012
|
|
58
|
+
manim/mobject/geometry/boolean_ops.py,sha256=oMuVA-7PVaZteHh5TU5xVG8VGMg3IEI0TgqatsX_jqA,10106
|
|
59
|
+
manim/mobject/geometry/labeled.py,sha256=TRB45DnYjekHF5WWPNa_yDtbE4YRDRp6-UnGhyjRS8U,5560
|
|
60
|
+
manim/mobject/geometry/line.py,sha256=2Rum-NnccQVu2nnVD1w_5aIui6SYW1QbNHBsxiTyBo8,37142
|
|
61
|
+
manim/mobject/geometry/polygram.py,sha256=t3t3_TtYH73CQThGX1oNMMWcDZVaQMb7ViRboahpSY8,23990
|
|
62
|
+
manim/mobject/geometry/shape_matchers.py,sha256=ATKg33IljjXMPwAGRH0XnbNxDM72tlL_aEMn-5yIKoU,6132
|
|
63
|
+
manim/mobject/geometry/tips.py,sha256=1Wyk94WNdyh7J_LDpBGDzATcKB3-JhzrfXSP-QiF_xU,10033
|
|
64
|
+
manim/mobject/graph.py,sha256=ZeAnFO_wjq6TMFZKLpbaRh24mNtlgQl_iI-tcxfIr0I,55148
|
|
62
65
|
manim/mobject/graphing/__init__.py,sha256=Lf9tyLlxTBckPLMI7ZACu8YxRrsMExOoqpi-657OMQ8,213
|
|
63
|
-
manim/mobject/graphing/coordinate_systems.py,sha256=
|
|
66
|
+
manim/mobject/graphing/coordinate_systems.py,sha256=uU1ETz4HA97arernzgLs59kOepKKDVFN75zyX7Yj1eM,116872
|
|
64
67
|
manim/mobject/graphing/functions.py,sha256=0rMEORjZPOt6Nkoqll6lV8jN2ZrvcvI2DnwJTO6LYQU,10564
|
|
65
|
-
manim/mobject/graphing/number_line.py,sha256=
|
|
66
|
-
manim/mobject/graphing/probability.py,sha256=
|
|
67
|
-
manim/mobject/graphing/scale.py,sha256=
|
|
68
|
-
manim/mobject/logo.py,sha256=
|
|
69
|
-
manim/mobject/matrix.py,sha256=
|
|
70
|
-
manim/mobject/mobject.py,sha256=
|
|
68
|
+
manim/mobject/graphing/number_line.py,sha256=kRf-2YOhqijGXWzCI1I1hkajw717WSMkDEcc3wx9Rms,23740
|
|
69
|
+
manim/mobject/graphing/probability.py,sha256=ugLpuW8Dya8mD5AIweB8Sfa_EVOeLEHTWa0ZxVFJEJM,17608
|
|
70
|
+
manim/mobject/graphing/scale.py,sha256=t7zw4RCJRqAzbYKagpfRXS_1AXhecPMnXrBjFGCPB1g,5145
|
|
71
|
+
manim/mobject/logo.py,sha256=j7qxkyAXEN9LS4rhaXW0nOrNbZ7TMG1BkyS2El1-SYo,14232
|
|
72
|
+
manim/mobject/matrix.py,sha256=V9ErLEwn8pD6oTh2AioDkPVBwKNINVcOEXJKIWv2dDM,19553
|
|
73
|
+
manim/mobject/mobject.py,sha256=jwwGkQKsn5IFz3pMSNj2KlAMANJyiOOaj2I8o8R_hEM,97830
|
|
71
74
|
manim/mobject/opengl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
75
|
manim/mobject/opengl/dot_cloud.py,sha256=QrsRx_nbCn6-1TsYtKyCvkhHCgJ3PNs-bRz1EHDoNeE,1474
|
|
73
76
|
manim/mobject/opengl/opengl_compatibility.py,sha256=mnjU4nZfnfr-E4TVJjHcyOBZXomW5--o3KcqIqzfWm8,1558
|
|
74
77
|
manim/mobject/opengl/opengl_geometry.py,sha256=_jo7AX-KyILIM2ThxFlWmYNC_UxZsQdhYg4s9EU_kMQ,26714
|
|
75
|
-
manim/mobject/opengl/opengl_image_mobject.py,sha256=
|
|
76
|
-
manim/mobject/opengl/opengl_mobject.py,sha256=
|
|
77
|
-
manim/mobject/opengl/opengl_point_cloud_mobject.py,sha256=
|
|
78
|
-
manim/mobject/opengl/opengl_surface.py,sha256=
|
|
78
|
+
manim/mobject/opengl/opengl_image_mobject.py,sha256=lMf1vMXfVayXYt9KS9arDK86xsvfJDvQrJUulleqaNc,2459
|
|
79
|
+
manim/mobject/opengl/opengl_mobject.py,sha256=F1Ljnf3yBtQgYEY_8o-qVsFcsDvS3cM88qhmOo3c30I,95164
|
|
80
|
+
manim/mobject/opengl/opengl_point_cloud_mobject.py,sha256=QNFXzrK-Vhdar7hWlE63h2nWYXEOE4NTyD_Jo5zPD0A,6207
|
|
81
|
+
manim/mobject/opengl/opengl_surface.py,sha256=96ZlnY09FcLOZM6qiMu15BopNHFT-wdtTN6m-SEoQZs,16140
|
|
79
82
|
manim/mobject/opengl/opengl_three_dimensions.py,sha256=5ETQrgx_Y595TjSkjbIrgcE_gjVomyPXfnr_WwuZj54,1755
|
|
80
|
-
manim/mobject/opengl/opengl_vectorized_mobject.py,sha256=
|
|
83
|
+
manim/mobject/opengl/opengl_vectorized_mobject.py,sha256=kltL_fkITqZWksuTbJ57EMzmbWSnFkjtmAOWrgGU-tA,64514
|
|
81
84
|
manim/mobject/svg/__init__.py,sha256=j8-PFkUAsx4E-e7AHm3CoMjo22VlKzPORQAsyFWnSd4,130
|
|
82
|
-
manim/mobject/svg/brace.py,sha256=
|
|
83
|
-
manim/mobject/svg/svg_mobject.py,sha256=
|
|
84
|
-
manim/mobject/table.py,sha256=
|
|
85
|
+
manim/mobject/svg/brace.py,sha256=7jSG0Olvj9gS-Uq2Favd19ICE3NA5Z7MGX9YFIBMAPA,12263
|
|
86
|
+
manim/mobject/svg/svg_mobject.py,sha256=x1ilWTetekuLXuXvFo-GuMTNqiNHbPlUM2Gwpi94GUg,20937
|
|
87
|
+
manim/mobject/table.py,sha256=5K_fTrCc1AlTspox666z85SQn7z05z1iIae6NtCqv5E,41881
|
|
85
88
|
manim/mobject/text/__init__.py,sha256=AwHG8zeX2Hycw8oG2HacdHmhpH24QQDnHXTlAmVdgU0,188
|
|
86
89
|
manim/mobject/text/code_mobject.py,sha256=5L4HYgAEkSCYOt7Nkc9LOdIiuUctTM1paB6pgV_ipJ4,23649
|
|
87
|
-
manim/mobject/text/numbers.py,sha256=
|
|
88
|
-
manim/mobject/text/tex_mobject.py,sha256=
|
|
89
|
-
manim/mobject/text/text_mobject.py,sha256=
|
|
90
|
+
manim/mobject/text/numbers.py,sha256=ewWIjbnJnxNhn8jikRj_juAfgegUK44VNwKaeZmuJVg,16852
|
|
91
|
+
manim/mobject/text/tex_mobject.py,sha256=E922HwXsaZohF5Wl40MxI8ELG6XRNHn43BNhBEUG7cM,17957
|
|
92
|
+
manim/mobject/text/text_mobject.py,sha256=5LGsKIHIiaqN4YU052LEvAZo5EhCw0h1KNW-QyVYkqQ,57212
|
|
90
93
|
manim/mobject/three_d/__init__.py,sha256=yiscdLu12eEoygyGp05V789zhouqEADin7owAkC9yU4,154
|
|
91
94
|
manim/mobject/three_d/polyhedra.py,sha256=FJrx5Pp5K9d_L24SAHfLemucJ9c4D1PznILzw0PQ9fw,12493
|
|
92
|
-
manim/mobject/three_d/three_d_utils.py,sha256=
|
|
93
|
-
manim/mobject/three_d/three_dimensions.py,sha256=
|
|
95
|
+
manim/mobject/three_d/three_d_utils.py,sha256=yCxb0oIm62NHqaWxmxpHnLFXNxrICzEMpYPoIQqD2Mk,2091
|
|
96
|
+
manim/mobject/three_d/three_dimensions.py,sha256=eQhPvJPs27bER_WvYIayC27t_a7Rgl8s8cVyNFLHl0Y,37956
|
|
94
97
|
manim/mobject/types/__init__.py,sha256=H-S04JNHysKk9Obs2tctXVoTyIzDL7JnZqqHt1GuWSY,172
|
|
95
|
-
manim/mobject/types/image_mobject.py,sha256=
|
|
96
|
-
manim/mobject/types/point_cloud_mobject.py,sha256=
|
|
97
|
-
manim/mobject/types/vectorized_mobject.py,sha256=
|
|
98
|
+
manim/mobject/types/image_mobject.py,sha256=S00Celq0wQAWEjHiBPRi9WjeOwZmUUly5Jn_l_-f7Tc,11512
|
|
99
|
+
manim/mobject/types/point_cloud_mobject.py,sha256=6hv2l51ajRt4iAY8Pf_UVuRlOwL9oxHM4MPWejATMfY,12065
|
|
100
|
+
manim/mobject/types/vectorized_mobject.py,sha256=i3g84J--5m1TJkfDDd0-oIuU6AG82ignwUC6uVkZMEA,89485
|
|
98
101
|
manim/mobject/utils.py,sha256=jp5aKkECeRu_0lrIhFuW7QGP4vei3vMNolruK4ik5kQ,3273
|
|
99
102
|
manim/mobject/value_tracker.py,sha256=Eg7wZoKu5S9HaTEOdaaQPhnAbsIBo1pXS2SWg1InCpU,6335
|
|
100
|
-
manim/mobject/vector_field.py,sha256=
|
|
103
|
+
manim/mobject/vector_field.py,sha256=7Ym85EjUkR5BEwvl2ayAkJYoq41h0VY51nFgQOqE4WY,39495
|
|
101
104
|
manim/opengl/__init__.py,sha256=0c5YcbaiITuYAmvvaBBM4Usye0fSLCyP4LtGuF5tq5M,560
|
|
102
105
|
manim/plugins/__init__.py,sha256=B6a1oiidTwJLSk8-P9-uUjm2Icr0413IrlwQAKvv3ns,66
|
|
103
|
-
manim/plugins/import_plugins.py,sha256=
|
|
104
|
-
manim/plugins/plugins_flags.py,sha256=
|
|
106
|
+
manim/plugins/import_plugins.py,sha256=Rqg-I5bIenPGPzC6I7Rrz4UQhC7kra6sBqwE3Kr60Ew,1476
|
|
107
|
+
manim/plugins/plugins_flags.py,sha256=A3xphQCj3MPlOjU4BgPc14zxC_6L_oDnVvRVU9rYvjw,515
|
|
105
108
|
manim/renderer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
109
|
manim/renderer/cairo_renderer.py,sha256=rjJYr6BgFtozuPgKujhTb0stmLYeVemtYo4HipL6W_k,8944
|
|
107
110
|
manim/renderer/opengl_renderer.py,sha256=8Sr6pCTMQVep_l8NgdF39BU2FBzQbO64Kqi3Kvgd-EQ,20766
|
|
108
111
|
manim/renderer/opengl_renderer_window.py,sha256=FtYirD5jn3xOnHNGQECTwxnjBSEtsshqBS3O4wxL2tg,4887
|
|
109
|
-
manim/renderer/shader.py,sha256=
|
|
112
|
+
manim/renderer/shader.py,sha256=tow0aGXq-ZMijmhJ8oaSNUQPa5aXerRe2FzXrVagZDc,14708
|
|
110
113
|
manim/renderer/shader_wrapper.py,sha256=nyHbPYx2KvPaeoOMqoRatddBWgQ_9emiud6ds_By-nw,5886
|
|
111
114
|
manim/renderer/shaders/default/frag.glsl,sha256=FEQmM7RUwcZlxPu5lkDcEXoyR2EfKjNC9hpaPce_ZBE,98
|
|
112
115
|
manim/renderer/shaders/default/vert.glsl,sha256=0thKIk9CzuSLGLh-6RyvFZDsnoSTpVC0v2WNjryMGIM,232
|
|
@@ -152,55 +155,63 @@ manim/renderer/shaders/vertex_colors/vert.glsl,sha256=I1HQwwKS0pmnfVnLAMAXsUJY4y
|
|
|
152
155
|
manim/renderer/vectorized_mobject_rendering.py,sha256=YLodUc5lRHqawL2kvugJuNvM7lQj6FVepeZuF4Oznsk,9284
|
|
153
156
|
manim/scene/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
157
|
manim/scene/moving_camera_scene.py,sha256=Vg5I6Zd_kG27JNi14dphwkOXK8UU2E0cQ1l188FDQuw,3765
|
|
155
|
-
manim/scene/scene.py,sha256=
|
|
156
|
-
manim/scene/scene_file_writer.py,sha256=
|
|
158
|
+
manim/scene/scene.py,sha256=SrSH8W8QSqFo2iipnh7J37LAk0PbNXZKBP-O-pSie3c,60454
|
|
159
|
+
manim/scene/scene_file_writer.py,sha256=jWkn6m8qezfcw6iAOKnIEEmQ0ZzUj-nvZXEvIYeCZYs,26241
|
|
157
160
|
manim/scene/section.py,sha256=VUmKsyGLU2MFWhSkSo3iSNYWoQ1HicXAO46eMorqeb4,3629
|
|
158
|
-
manim/scene/three_d_scene.py,sha256=
|
|
159
|
-
manim/scene/vector_space_scene.py,sha256=
|
|
161
|
+
manim/scene/three_d_scene.py,sha256=ET7miTR-d7wTuaYlc9ajEv1igST2wv-eV0zPuXfvtA4,19755
|
|
162
|
+
manim/scene/vector_space_scene.py,sha256=nljeT-ERb25qX6nn7YTjlzq3Bv9brG_tC2K05608d18,37810
|
|
160
163
|
manim/scene/zoomed_scene.py,sha256=eC6WO8OYOT-V7REtUlhXdqTyI9HrdPWFOnlY90blEUA,6980
|
|
161
164
|
manim/templates/Axes.mtp,sha256=gfMRnB0PjXF0m6u9IcbI_pm48eDqxCkylKICWdDAP-M,313
|
|
162
165
|
manim/templates/Default.mtp,sha256=AHqIgMY-rjIHaeuFSgi4n2KXaLORmACjTdPhUnFgZdY,547
|
|
163
166
|
manim/templates/MovingCamera.mtp,sha256=NLiT2ZPutKTzt8As2gDJDqXMBNB8d-7Y3PFXS0HhMas,327
|
|
164
167
|
manim/templates/template.cfg,sha256=XKiKX2mMT7x_3-EiPKAhHUpuiW_K4_RU6Iu1ZYOzQzw,134
|
|
168
|
+
manim/typing.py,sha256=WbS48KAFPOGGFGCjaVgoKouQ_oEZz42CETokTs_0ujU,5098
|
|
165
169
|
manim/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
166
|
-
manim/utils/bezier.py,sha256=
|
|
170
|
+
manim/utils/bezier.py,sha256=8nvn9dpzlAn4IbEyfUCqBkh8wW-0GZ1xVZ0Kr-8FDfI,23912
|
|
167
171
|
manim/utils/caching.py,sha256=0TkmV5GtZYKgskMI4XMV-kAh3_kamIu5-Pl4nN9D_ws,2709
|
|
168
|
-
manim/utils/color.py,sha256=
|
|
172
|
+
manim/utils/color/AS2700.py,sha256=Not0hoeAELGcbS_kKCfbnrH3UQldZurciuhLi9MejX4,8707
|
|
173
|
+
manim/utils/color/BS381.py,sha256=3paaueoY692GsDiL6NiuXpOKBF6J3gwHD9UGvcqlHV4,11013
|
|
174
|
+
manim/utils/color/X11.py,sha256=O9FDhHtFQo6jIqbSfzZBgRjNddrLVwSsJE8OyraefvU,17665
|
|
175
|
+
manim/utils/color/XKCD.py,sha256=Id5iWcpHycObtKmQZ_MrUWYO7gCISgZmFC6Jjbw4gQ8,32613
|
|
176
|
+
manim/utils/color/__init__.py,sha256=PBlfF4pQp_jXogZlzWihcsimNWQ9qEubcuZvleMmHZg,1222
|
|
177
|
+
manim/utils/color/core.py,sha256=BK0IljA-y4bXFap-Zyyx6t-UAsxPlygZe3POO8g-E_k,32399
|
|
178
|
+
manim/utils/color/manim_colors.py,sha256=5eo-KIpEZZw1-USS7ecgF1lyboR_okBtka9iUEIgbvE,6858
|
|
169
179
|
manim/utils/commands.py,sha256=FcjAP3caIazSnq411xL0BJMQl6c6W9BRYapSU742zrg,1237
|
|
170
180
|
manim/utils/config_ops.py,sha256=LeeZXTxEHqzbzML1kuBe9VxEDz9chPfRlMWFkUSDrOA,2101
|
|
171
181
|
manim/utils/debug.py,sha256=6vQ9j-cFEDfk3tdhmLTywYjONyqDohyMVNhC5eg5cUY,2234
|
|
172
182
|
manim/utils/deprecation.py,sha256=PFy2RaFm0RUew083onN6h90RNQ3KQi0OrupeoRP3nis,15062
|
|
173
183
|
manim/utils/docbuild/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
174
|
-
manim/utils/docbuild/
|
|
184
|
+
manim/utils/docbuild/autocolor_directive.py,sha256=9Z7B3hxE4Mvg7ozqO-ht_bx9Q2zpg4zmXZghQoiINQk,2941
|
|
185
|
+
manim/utils/docbuild/manim_directive.py,sha256=8Ym3IeEC1S8-ztV6LRc1IQpQjFevu-aAavrhW7pM6lQ,13889
|
|
175
186
|
manim/utils/exceptions.py,sha256=MvH8f1xcwY3hr8IayTfWMe6u_gNlIYfChlsRzFT_v-U,197
|
|
176
187
|
manim/utils/family.py,sha256=s_aKqTIXTNMMnq_5rDYgZtx0AipTjjlymPmmdjO3qdw,1176
|
|
177
188
|
manim/utils/family_ops.py,sha256=EHfHdhAkl8VdoVQxvTXrNvKhAp7t0DUSk_6gVaW3pG8,1446
|
|
178
|
-
manim/utils/file_ops.py,sha256=
|
|
179
|
-
manim/utils/hashing.py,sha256=
|
|
189
|
+
manim/utils/file_ops.py,sha256=fkmHGw-dA3BI1np7wZBtvAlvaY1TxnPtaE-QuAZgId4,7687
|
|
190
|
+
manim/utils/hashing.py,sha256=SktvDRhmXZSIzdkX7diSaxS9JQT02gl824heStMfBec,13515
|
|
180
191
|
manim/utils/images.py,sha256=BDuBDFWfugl-ibLNhtThOzIl3GvjfYckJlnUfckVWJ0,1664
|
|
181
192
|
manim/utils/ipython_magic.py,sha256=bQGuULr19o5IXFXm5HclONX2UV_0agsMLg-y_t8BQhc,7801
|
|
182
|
-
manim/utils/iterables.py,sha256=
|
|
193
|
+
manim/utils/iterables.py,sha256=K5235_xupuJJ-iVkhWSO8o0f4XsKKGx_LgUJoLuewAg,12298
|
|
183
194
|
manim/utils/module_ops.py,sha256=arTMpCA6x6FUQDe98V8sKiidCK6tq_HpLo-MFcW7HRA,4514
|
|
184
195
|
manim/utils/opengl.py,sha256=z-bMa0StytF3zxFXsJSwoQR4BV8jSK3FTWilUKZMYlo,3352
|
|
185
196
|
manim/utils/paths.py,sha256=gm-tf7cOtboP0RwJ0vdp7oqSukvmEbAnGrwKBo_YT8U,11723
|
|
186
|
-
manim/utils/rate_functions.py,sha256
|
|
187
|
-
manim/utils/simple_functions.py,sha256=
|
|
197
|
+
manim/utils/rate_functions.py,sha256=Xd14BTetdeaYHeTgzCQU29RDJfIUpvGcbV3hAlLn91c,12745
|
|
198
|
+
manim/utils/simple_functions.py,sha256=52ynDLAJgABN84OVEMLuvIuciPToW_KQ4WruOaNpHOQ,3389
|
|
188
199
|
manim/utils/sounds.py,sha256=jzxC3C6sITuBnQabHIWQVQ5WEpA0RRw1JOik81UlHn0,475
|
|
189
|
-
manim/utils/space_ops.py,sha256=
|
|
200
|
+
manim/utils/space_ops.py,sha256=rn7fX5oid-5mHB6j4j6xv3YsBG0ZhdhhgFA0SYsLwqA,21907
|
|
190
201
|
manim/utils/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
202
|
manim/utils/testing/_frames_testers.py,sha256=oRFls38xjqW1h-tv-MMFtIZNRxxT45zLYjQZiXlRat8,3808
|
|
192
203
|
manim/utils/testing/_show_diff.py,sha256=qsY8VpBPAjOxaZetsFLr6Fz_xgJAGCBuucn6aretVDw,1723
|
|
193
204
|
manim/utils/testing/_test_class_makers.py,sha256=QiBrFqfxoeFCgAsAFyIU4WvsKo807hxDx6K9jh-Q0ms,2074
|
|
194
205
|
manim/utils/testing/config_graphical_tests_monoframe.cfg,sha256=FCf168PQDrTiwv-WurqRDyL4ndwtfBvTS9Bl23MEAyE,161
|
|
195
206
|
manim/utils/testing/config_graphical_tests_multiframes.cfg,sha256=bzzl4TpReJ7E4JR0OazZnXp1JFvje9rbYP5p3sDF0ys,158
|
|
196
|
-
manim/utils/testing/frames_comparison.py,sha256=
|
|
197
|
-
manim/utils/tex.py,sha256=
|
|
198
|
-
manim/utils/tex_file_writing.py,sha256=
|
|
207
|
+
manim/utils/testing/frames_comparison.py,sha256=6l_LvOX936WqkTdc8wxOAlb7C2tk5_Fnok-t_lfem9U,10098
|
|
208
|
+
manim/utils/tex.py,sha256=GlmT-9wsxRq5jkrcO_RkXKlrRu6mnCsFeUFEYZHRmds,9315
|
|
209
|
+
manim/utils/tex_file_writing.py,sha256=znXl4FeDGLMqgiHOt_-Gx-G9QpIAg6EjNWEyqY9Gdmc,11202
|
|
199
210
|
manim/utils/tex_templates.py,sha256=2NBznl_0CVG1VC46ciDTjwfCCgqvhmq8_OfC6z6i1xo,28517
|
|
200
211
|
manim/utils/unit.py,sha256=5xJOBYysVqSLIsb6xDviaRdG2U9SRAWHx-pLvtc4yVk,941
|
|
201
|
-
manim-0.
|
|
202
|
-
manim-0.
|
|
203
|
-
manim-0.
|
|
204
|
-
manim-0.
|
|
205
|
-
manim-0.
|
|
206
|
-
manim-0.
|
|
212
|
+
manim-0.18.0.post0.dist-info/LICENSE,sha256=xqki_Bz67XrA-Hqh3Hfr9aPI0czFqwHaMxU_DQE78Bk,1072
|
|
213
|
+
manim-0.18.0.post0.dist-info/LICENSE.community,sha256=cdbuve4GvO2BO9RxrV4gPYk3za34mHK6erh-vXJYw-c,1088
|
|
214
|
+
manim-0.18.0.post0.dist-info/METADATA,sha256=C55vtMYluRDyFnf12dH_905QyLcwZXkNQ0qn9aXdoFI,11451
|
|
215
|
+
manim-0.18.0.post0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
216
|
+
manim-0.18.0.post0.dist-info/entry_points.txt,sha256=T_f5FcXeR4Hoz6Bf4reBBM8LzwalFtW4pXXyU7rsuo0,73
|
|
217
|
+
manim-0.18.0.post0.dist-info/RECORD,,
|