manim 0.17.0__py3-none-any.whl → 0.19.1__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.
- manim/__init__.py +11 -6
- manim/__main__.py +62 -19
- manim/_config/__init__.py +10 -9
- manim/_config/cli_colors.py +26 -9
- manim/_config/default.cfg +1 -3
- manim/_config/logger_utils.py +23 -13
- manim/_config/utils.py +662 -468
- manim/animation/animation.py +164 -18
- manim/animation/changing.py +34 -23
- manim/animation/composition.py +265 -67
- manim/animation/creation.py +208 -26
- manim/animation/fading.py +16 -18
- manim/animation/growing.py +35 -15
- manim/animation/indication.py +150 -76
- manim/animation/movement.py +56 -22
- manim/animation/numbers.py +64 -6
- manim/animation/rotation.py +78 -7
- manim/animation/specialized.py +6 -7
- manim/animation/speedmodifier.py +13 -10
- manim/animation/transform.py +14 -11
- manim/animation/transform_matching_parts.py +3 -4
- manim/animation/updaters/mobject_update_utils.py +152 -30
- manim/animation/updaters/update.py +10 -7
- manim/camera/camera.py +182 -118
- manim/camera/mapping_camera.py +34 -3
- manim/camera/moving_camera.py +95 -74
- manim/camera/multi_camera.py +23 -15
- manim/camera/three_d_camera.py +70 -52
- manim/cli/__init__.py +17 -0
- manim/cli/cfg/group.py +76 -44
- manim/cli/checkhealth/checks.py +192 -0
- manim/cli/checkhealth/commands.py +90 -0
- manim/cli/default_group.py +158 -25
- manim/cli/init/commands.py +33 -25
- manim/cli/plugins/commands.py +16 -3
- manim/cli/render/commands.py +72 -60
- manim/cli/render/ease_of_access_options.py +4 -3
- manim/cli/render/global_options.py +59 -17
- manim/cli/render/output_options.py +6 -5
- manim/cli/render/render_options.py +98 -33
- manim/constants.py +109 -59
- manim/data_structures.py +31 -0
- manim/mobject/frame.py +8 -5
- manim/mobject/geometry/__init__.py +1 -0
- manim/mobject/geometry/arc.py +277 -135
- manim/mobject/geometry/boolean_ops.py +32 -31
- manim/mobject/geometry/labeled.py +376 -0
- manim/mobject/geometry/line.py +192 -87
- manim/mobject/geometry/polygram.py +224 -58
- manim/mobject/geometry/shape_matchers.py +61 -25
- manim/mobject/geometry/tips.py +122 -48
- manim/mobject/graph.py +1027 -419
- manim/mobject/graphing/coordinate_systems.py +533 -278
- manim/mobject/graphing/functions.py +53 -32
- manim/mobject/graphing/number_line.py +123 -65
- manim/mobject/graphing/probability.py +88 -62
- manim/mobject/graphing/scale.py +33 -19
- manim/mobject/logo.py +118 -28
- manim/mobject/matrix.py +87 -83
- manim/mobject/mobject.py +912 -442
- manim/mobject/opengl/dot_cloud.py +16 -5
- manim/mobject/opengl/opengl_compatibility.py +4 -2
- manim/mobject/opengl/opengl_geometry.py +254 -153
- manim/mobject/opengl/opengl_image_mobject.py +3 -1
- manim/mobject/opengl/opengl_mobject.py +779 -482
- manim/mobject/opengl/opengl_point_cloud_mobject.py +41 -14
- manim/mobject/opengl/opengl_surface.py +14 -92
- manim/mobject/opengl/opengl_three_dimensions.py +12 -8
- manim/mobject/opengl/opengl_vectorized_mobject.py +98 -100
- manim/mobject/svg/brace.py +173 -41
- manim/mobject/svg/svg_mobject.py +139 -53
- manim/mobject/table.py +61 -68
- manim/mobject/text/code_mobject.py +193 -539
- manim/mobject/text/numbers.py +81 -34
- manim/mobject/text/tex_mobject.py +130 -78
- manim/mobject/text/text_mobject.py +288 -164
- manim/mobject/three_d/polyhedra.py +111 -13
- manim/mobject/three_d/three_d_utils.py +17 -8
- manim/mobject/three_d/three_dimensions.py +239 -106
- manim/mobject/types/image_mobject.py +50 -30
- manim/mobject/types/point_cloud_mobject.py +120 -75
- manim/mobject/types/vectorized_mobject.py +841 -408
- manim/mobject/value_tracker.py +105 -38
- manim/mobject/vector_field.py +50 -31
- manim/opengl/__init__.py +3 -3
- manim/plugins/__init__.py +14 -1
- manim/plugins/plugins_flags.py +10 -14
- manim/renderer/cairo_renderer.py +65 -50
- manim/renderer/opengl_renderer.py +89 -69
- manim/renderer/opengl_renderer_window.py +39 -18
- manim/renderer/shader.py +123 -87
- manim/renderer/shader_wrapper.py +44 -28
- manim/renderer/vectorized_mobject_rendering.py +38 -10
- manim/scene/moving_camera_scene.py +32 -3
- manim/scene/scene.py +507 -242
- manim/scene/scene_file_writer.py +371 -220
- manim/scene/section.py +20 -16
- manim/scene/three_d_scene.py +14 -22
- manim/scene/vector_space_scene.py +223 -129
- manim/scene/zoomed_scene.py +46 -41
- manim/typing.py +990 -0
- manim/utils/bezier.py +1823 -371
- manim/utils/caching.py +12 -5
- manim/utils/color/AS2700.py +236 -0
- manim/utils/color/BS381.py +318 -0
- manim/utils/color/DVIPSNAMES.py +96 -0
- manim/utils/color/SVGNAMES.py +179 -0
- manim/utils/color/X11.py +533 -0
- manim/utils/color/XKCD.py +952 -0
- manim/utils/color/__init__.py +61 -0
- manim/utils/color/core.py +1667 -0
- manim/utils/color/manim_colors.py +218 -0
- manim/utils/commands.py +48 -20
- manim/utils/config_ops.py +39 -19
- manim/utils/debug.py +8 -7
- manim/utils/deprecation.py +86 -39
- manim/utils/docbuild/__init__.py +17 -0
- manim/utils/docbuild/autoaliasattr_directive.py +236 -0
- manim/utils/docbuild/autocolor_directive.py +99 -0
- manim/utils/docbuild/manim_directive.py +94 -41
- manim/utils/docbuild/module_parsing.py +245 -0
- manim/utils/exceptions.py +6 -0
- manim/utils/family.py +5 -3
- manim/utils/family_ops.py +17 -4
- manim/utils/file_ops.py +27 -17
- manim/utils/hashing.py +55 -45
- manim/utils/images.py +13 -7
- manim/utils/ipython_magic.py +13 -7
- manim/utils/iterables.py +163 -120
- manim/utils/module_ops.py +66 -24
- manim/utils/opengl.py +77 -24
- manim/utils/parameter_parsing.py +32 -0
- manim/utils/paths.py +30 -33
- manim/utils/polylabel.py +235 -0
- manim/utils/qhull.py +218 -0
- manim/utils/rate_functions.py +98 -32
- manim/utils/simple_functions.py +25 -33
- manim/utils/sounds.py +7 -1
- manim/utils/space_ops.py +188 -115
- manim/utils/testing/__init__.py +17 -0
- manim/utils/testing/_frames_testers.py +13 -8
- manim/utils/testing/_show_diff.py +5 -3
- manim/utils/testing/_test_class_makers.py +34 -18
- manim/utils/testing/frames_comparison.py +37 -19
- manim/utils/tex.py +130 -198
- manim/utils/tex_file_writing.py +77 -47
- manim/utils/tex_templates.py +2 -1
- manim/utils/unit.py +6 -5
- {manim-0.17.0.dist-info → manim-0.19.1.dist-info}/METADATA +64 -65
- manim-0.19.1.dist-info/RECORD +220 -0
- {manim-0.17.0.dist-info → manim-0.19.1.dist-info}/WHEEL +1 -1
- manim-0.19.1.dist-info/entry_points.txt +3 -0
- {manim-0.17.0.dist-info → manim-0.19.1.dist-info/licenses}/LICENSE.community +1 -1
- manim/cli/new/group.py +0 -189
- manim/communitycolors.py +0 -9
- manim/gui/__init__.py +0 -0
- manim/gui/gui.py +0 -82
- manim/plugins/import_plugins.py +0 -43
- manim/utils/color.py +0 -552
- manim-0.17.0.dist-info/RECORD +0 -206
- manim-0.17.0.dist-info/entry_points.txt +0 -4
- /manim/cli/{new → checkhealth}/__init__.py +0 -0
- {manim-0.17.0.dist-info → manim-0.19.1.dist-info/licenses}/LICENSE +0 -0
manim-0.17.0.dist-info/RECORD
DELETED
|
@@ -1,206 +0,0 @@
|
|
|
1
|
-
manim/__init__.py,sha256=AyIaHNDMASSKKjiEgZk4t8HD6x_G27G2qgW68nwhTe0,3541
|
|
2
|
-
manim/__main__.py,sha256=WeM3sJxEboBgp9aflet9Qoc7dryWTqzzIcoShmPKBkk,1391
|
|
3
|
-
manim/_config/__init__.py,sha256=Ee6MGSIfFYZ525HaFs8usPRBQhayuLuPgQLpuihjVAo,2620
|
|
4
|
-
manim/_config/cli_colors.py,sha256=DZUQ9jB5DcMoQ6luMieQPUEJtYSAKhcbNeAeC_4mqyI,1660
|
|
5
|
-
manim/_config/default.cfg,sha256=SwsaF5_KwQhE0BiINlPkSEHHt13BbRDWEuDlGiWIF2s,5388
|
|
6
|
-
manim/_config/logger_utils.py,sha256=LS1DBLhZ6TaiYWBk7TbBfdE44vzmA91WkdOdMoRPK9I,5367
|
|
7
|
-
manim/_config/utils.py,sha256=BNEuYtxAa3X9r2lZqwMDx_2CcirksCWyKxUf7L0vKBs,57309
|
|
8
|
-
manim/animation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
manim/animation/animation.py,sha256=RyFmKVdcM9zakG7JFXRcWlzQ0-ZQfjqN1jTVnIyzTsw,19972
|
|
10
|
-
manim/animation/changing.py,sha256=TAxSTPmNxTwHO1XgxigqfDKDWGozf-JEP0OwT5nMfrg,5513
|
|
11
|
-
manim/animation/composition.py,sha256=N8coeyeCzTlbRh15pV8DD-migMDJS56r3ApqUv4MQbY,7584
|
|
12
|
-
manim/animation/creation.py,sha256=Z49uSDrDEd6IY6XvtYiHlv0I_YPmS6oA39sy2RjEGjQ,19793
|
|
13
|
-
manim/animation/fading.py,sha256=OJo3QKQdgMN2hqVdL0LNT3H_9xyg-Ont9vH5pjDCQW4,5824
|
|
14
|
-
manim/animation/growing.py,sha256=pEUwKG8UPFNpi1pFJBu6dpvIQr91kXos0oQfVgsLaOI,7154
|
|
15
|
-
manim/animation/indication.py,sha256=ildkfbi_76pXaROdvLXN5Y3CyU4Vw8Qb7em3jFifelA,21164
|
|
16
|
-
manim/animation/movement.py,sha256=aMKTWFdOsNpBiSAuQyMhkYk4VogpCFqgOyxFsA7zjUQ,5086
|
|
17
|
-
manim/animation/numbers.py,sha256=FmpuRQZ6UB_IUJ8eUwHIpBz9dsZnGumIwjlLVc4wQsQ,1427
|
|
18
|
-
manim/animation/rotation.py,sha256=nV-nxJlPDa1pkGIOE_lsdkEOL0nwbEgBBVmHPmo-xWw,3228
|
|
19
|
-
manim/animation/specialized.py,sha256=ZFo0NkRAry9l87zHJIwFJXJBM6IpU25otvAtD6iRcQE,2923
|
|
20
|
-
manim/animation/speedmodifier.py,sha256=mA1lbFdRtXAJ40_u1xheTqer3j2_D-2A926AWcBVdSk,9849
|
|
21
|
-
manim/animation/transform.py,sha256=U1blb-XyTVyQ48PWi0vqfFIx-XbL1NTQ_22RTSli2QY,30638
|
|
22
|
-
manim/animation/transform_matching_parts.py,sha256=unZlJKsJQmENd5K82VNkzhxkY_-uB27SvvDJTBXo5tU,10414
|
|
23
|
-
manim/animation/updaters/__init__.py,sha256=jgKFveRzPwFLbVHkTfJrv3qDIrgD-yuFKYsMRkwpPJc,169
|
|
24
|
-
manim/animation/updaters/mobject_update_utils.py,sha256=b0IwCYjqGZzg_ZHjvX22uef7HRNhoF4QJxqO_o5B7yc,2930
|
|
25
|
-
manim/animation/updaters/update.py,sha256=FDiqMrQDU6BxXa4WXfOEahIUSE2haZ6vO4j_xL_XYbM,1719
|
|
26
|
-
manim/camera/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
manim/camera/camera.py,sha256=6wQPwlA_T72BzASd-JBkgsCinGPsA7rKR8sR6o9c8n8,44446
|
|
28
|
-
manim/camera/mapping_camera.py,sha256=t4KrZ_S0zpcb2Mu4dGE3hhs4qVkBNwiGpglQlRLI_Ds,4994
|
|
29
|
-
manim/camera/moving_camera.py,sha256=D1EIEqnHtWodqyZtO9AMiZ-IMQP2G4ZfMe9nm9kwy_A,8102
|
|
30
|
-
manim/camera/multi_camera.py,sha256=IbD0O_-MQgbuXhsODB8VU-19w1ExSEVxJXMw2tRccBQ,3382
|
|
31
|
-
manim/camera/three_d_camera.py,sha256=sgGTLiCTXgrijvPeCIbhGlfhew-FwNscGkuok0omm9s,14709
|
|
32
|
-
manim/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
-
manim/cli/cfg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
manim/cli/cfg/group.py,sha256=ddf__u5GzjT7vL0Ah8GA-6gJLHTXPsDkLhcXLk-fDZE,9688
|
|
35
|
-
manim/cli/default_group.py,sha256=lUXuU8M0hH4UV0lPrb9DY8w0GZYJBD3XT_nnecFToH8,2184
|
|
36
|
-
manim/cli/init/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
manim/cli/init/commands.py,sha256=5l9W3XEQcZK88cXL4GHIInn0PsyW7zVZtAbQQfEbf3k,5833
|
|
38
|
-
manim/cli/new/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
manim/cli/new/group.py,sha256=1AgP7JCMnElqsDToN1-0CHYYpsLOxDWksA12Q51zQrk,5676
|
|
40
|
-
manim/cli/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
-
manim/cli/plugins/commands.py,sha256=jrYGeMpEwyvAJSiyqy9klSW_WsJhV5LTScHxcDA1X6c,686
|
|
42
|
-
manim/cli/render/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
manim/cli/render/commands.py,sha256=f6Dh3NCY5_3SrcfqsNhQjfdqATZlK54fWg1SJOCM9Qc,4856
|
|
44
|
-
manim/cli/render/ease_of_access_options.py,sha256=hSECXc6AL__FqYq8XCKr-Ylvnp0aVPFWRKzMrdgPrgU,1019
|
|
45
|
-
manim/cli/render/global_options.py,sha256=8Yd6g5ekNMlfg8-QR_3PlvR_xRCBE-f-Mnch6Ynbax4,2822
|
|
46
|
-
manim/cli/render/output_options.py,sha256=-usXVN_f-BbtyVszJJh7Ns4i1MAIYtyKe5Q5NutH0Rk,1037
|
|
47
|
-
manim/cli/render/render_options.py,sha256=IN27YxghNV1kR2A4WzRo4RtbSS81MLkajYxal-3Gjxs,3873
|
|
48
|
-
manim/communitycolors.py,sha256=8YmE0U18wKVhr0HSrHVj9NEOmLx_V5vNC7J2QpQ9mmg,187
|
|
49
|
-
manim/constants.py,sha256=mNLkuS8l3H0HdSWcF7kOtThiRAOpQ9baFOj9gKcx0Zw,7442
|
|
50
|
-
manim/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
manim/gui/gui.py,sha256=twZFJM9nNoGt59FLV6Y5EMsh-3TZ-8Du_Byqo8ES_KQ,2671
|
|
52
|
-
manim/mobject/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
|
-
manim/mobject/frame.py,sha256=zGFMMmMtgYwnXX47DLJs3qaCCE-NPFyAjfV0NTzHEb8,878
|
|
54
|
-
manim/mobject/geometry/__init__.py,sha256=2cA3wulQvlpZfEDsuwlU_zWBgl1aT8zk3MTCHqPUAkk,178
|
|
55
|
-
manim/mobject/geometry/arc.py,sha256=296GialOFKUv8Q21w9SlqWctcOibMYYKpxe5Uxcaxuk,40435
|
|
56
|
-
manim/mobject/geometry/boolean_ops.py,sha256=3ClAODSLDDFxcNgrELykF9GssO4FiR2yvoAAnS_wY8Q,10128
|
|
57
|
-
manim/mobject/geometry/line.py,sha256=qeWEiLpoYtXsUx7OVhdgg2ERSIpNqY3LL-CSEKJMGSs,36610
|
|
58
|
-
manim/mobject/geometry/polygram.py,sha256=zdQ20-iZC1rhnWMo_OZi0f_Dru8WRwDFaObhsUHXLT0,20612
|
|
59
|
-
manim/mobject/geometry/shape_matchers.py,sha256=hNxVsAwtRqMgSQJd8NpZ4LmqYMpHVY8Z3jjzyM07Pus,5827
|
|
60
|
-
manim/mobject/geometry/tips.py,sha256=_Wkcyk9GbFwg-10FftUYH2ZvY9fs79WEjbl-qTZfzvg,8140
|
|
61
|
-
manim/mobject/graph.py,sha256=HqDfRoCCUo_gZtEId_NFBJ1udDim2AebUDCD2KOv38U,41896
|
|
62
|
-
manim/mobject/graphing/__init__.py,sha256=Lf9tyLlxTBckPLMI7ZACu8YxRrsMExOoqpi-657OMQ8,213
|
|
63
|
-
manim/mobject/graphing/coordinate_systems.py,sha256=uQk3ZRhfvoSS_qx0nIAbIWT4Scud79tu8qyoMmDsgsE,109652
|
|
64
|
-
manim/mobject/graphing/functions.py,sha256=tKa-7mql2hYbToI_nHaFh1wA_odw3kziugwUDR2i4rw,10569
|
|
65
|
-
manim/mobject/graphing/number_line.py,sha256=r8vFWOl--bSAtQ5acFhlcdl1CEvero-fVfMGwzt6SH8,22628
|
|
66
|
-
manim/mobject/graphing/probability.py,sha256=LwIH3Avb-gDeJeOtEvCy6CnZBgZ-1iFTYtJG8__YVFM,17527
|
|
67
|
-
manim/mobject/graphing/scale.py,sha256=vyAGI4AohBtYZpqf92QyYqgcZatgERSP9bjiKPbm5bM,5181
|
|
68
|
-
manim/mobject/logo.py,sha256=Wj75hp2aELfe5tbsDznpWK8o5adt9fBlYTl-RKobLrM,8315
|
|
69
|
-
manim/mobject/matrix.py,sha256=_XfiVvvZfUYBQ0RCrgWqDqB7oUqSM5LMyYAAuGjyDP0,19707
|
|
70
|
-
manim/mobject/mobject.py,sha256=r0meknbDSWfTM4j9nsxX-a37SS4ft6-YIkuaaeBjty0,93040
|
|
71
|
-
manim/mobject/opengl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
|
-
manim/mobject/opengl/dot_cloud.py,sha256=QrsRx_nbCn6-1TsYtKyCvkhHCgJ3PNs-bRz1EHDoNeE,1474
|
|
73
|
-
manim/mobject/opengl/opengl_compatibility.py,sha256=mnjU4nZfnfr-E4TVJjHcyOBZXomW5--o3KcqIqzfWm8,1558
|
|
74
|
-
manim/mobject/opengl/opengl_geometry.py,sha256=_jo7AX-KyILIM2ThxFlWmYNC_UxZsQdhYg4s9EU_kMQ,26714
|
|
75
|
-
manim/mobject/opengl/opengl_image_mobject.py,sha256=xYwDynP51aQtlhOUyBhQ5zYd2HOFtxHDP0fHm65xDZw,2455
|
|
76
|
-
manim/mobject/opengl/opengl_mobject.py,sha256=_rQtD0e4D7mIUtND8E5Yb4g-06Ke7khnFnOeta8oAdg,94917
|
|
77
|
-
manim/mobject/opengl/opengl_point_cloud_mobject.py,sha256=wDKsd8bYnl1m6x2AcBfVCWfPTLrttCl3GyZTXtCb_Eo,6209
|
|
78
|
-
manim/mobject/opengl/opengl_surface.py,sha256=VTf_quYOngN1dho6Q7P8J5CrxLpP7TlNTLmvN9CqRus,19447
|
|
79
|
-
manim/mobject/opengl/opengl_three_dimensions.py,sha256=5ETQrgx_Y595TjSkjbIrgcE_gjVomyPXfnr_WwuZj54,1755
|
|
80
|
-
manim/mobject/opengl/opengl_vectorized_mobject.py,sha256=h4jmjbi7Gb2moszN0r9OM4I51PkeX5deTCEONWuDOm4,64112
|
|
81
|
-
manim/mobject/svg/__init__.py,sha256=j8-PFkUAsx4E-e7AHm3CoMjo22VlKzPORQAsyFWnSd4,130
|
|
82
|
-
manim/mobject/svg/brace.py,sha256=8kQwv4gCXbkW8BKdkxir_cAhfxvbzFzTPONTlcyytIE,11452
|
|
83
|
-
manim/mobject/svg/svg_mobject.py,sha256=zDjuMOeEGn5S7Lsy-TEAPcJUADVN5JE33K1kW1LRr-E,17703
|
|
84
|
-
manim/mobject/table.py,sha256=nZf8RFx-tQOB1tX_Sj0fDMZiO0_nGmmp9iINHUVuDV4,41892
|
|
85
|
-
manim/mobject/text/__init__.py,sha256=AwHG8zeX2Hycw8oG2HacdHmhpH24QQDnHXTlAmVdgU0,188
|
|
86
|
-
manim/mobject/text/code_mobject.py,sha256=m0ejrrvah4lxDb5cqMLApEdYgdLqXi060J9nplwyTeY,23034
|
|
87
|
-
manim/mobject/text/numbers.py,sha256=cJ-Z7MF-gsE8-1w7_haAH1SDBfYdnuQFzA-S1pH-9Ng,15020
|
|
88
|
-
manim/mobject/text/tex_mobject.py,sha256=RrXRaOSRIgVW_Lg7N4KQDKU8zNwGPh39XZBqnT_vx4U,17384
|
|
89
|
-
manim/mobject/text/text_mobject.py,sha256=I574Va0O2kvcAhm-sVdNiEo0u0cCp89A__K96X6uVvg,52054
|
|
90
|
-
manim/mobject/three_d/__init__.py,sha256=yiscdLu12eEoygyGp05V789zhouqEADin7owAkC9yU4,154
|
|
91
|
-
manim/mobject/three_d/polyhedra.py,sha256=FJrx5Pp5K9d_L24SAHfLemucJ9c4D1PznILzw0PQ9fw,12493
|
|
92
|
-
manim/mobject/three_d/three_d_utils.py,sha256=4So4O6P-gaIicY3ULVehKdDaUBW2IggusVMUOUxSIiw,1879
|
|
93
|
-
manim/mobject/three_d/three_dimensions.py,sha256=r5Vb3k6H98NjXSVEjBDTBVXobyclPepKBvtum2S0nnQ,34816
|
|
94
|
-
manim/mobject/types/__init__.py,sha256=H-S04JNHysKk9Obs2tctXVoTyIzDL7JnZqqHt1GuWSY,172
|
|
95
|
-
manim/mobject/types/image_mobject.py,sha256=3hobZgoBFmLpWJsAky3yctIvekU-xneTkaBFZ6xMIjo,11464
|
|
96
|
-
manim/mobject/types/point_cloud_mobject.py,sha256=J0bZev293BreFFqBwur6egVUE3r07VJcDIazpfghZuk,12002
|
|
97
|
-
manim/mobject/types/vectorized_mobject.py,sha256=KjDYANQoxwyfnK-knySu27AKZIdFW_k4B7i3FCo3a54,83217
|
|
98
|
-
manim/mobject/utils.py,sha256=jp5aKkECeRu_0lrIhFuW7QGP4vei3vMNolruK4ik5kQ,3273
|
|
99
|
-
manim/mobject/value_tracker.py,sha256=Eg7wZoKu5S9HaTEOdaaQPhnAbsIBo1pXS2SWg1InCpU,6335
|
|
100
|
-
manim/mobject/vector_field.py,sha256=uelOFq-sBbIk3ESaW1qyDQQ_nDJm6zPQMZBUQlH-6jQ,39337
|
|
101
|
-
manim/opengl/__init__.py,sha256=0c5YcbaiITuYAmvvaBBM4Usye0fSLCyP4LtGuF5tq5M,560
|
|
102
|
-
manim/plugins/__init__.py,sha256=B6a1oiidTwJLSk8-P9-uUjm2Icr0413IrlwQAKvv3ns,66
|
|
103
|
-
manim/plugins/import_plugins.py,sha256=S2yx3KlJpXIyNrFsoBoq75niR3ZGfkoSAXcsPpo0vMM,1471
|
|
104
|
-
manim/plugins/plugins_flags.py,sha256=FBwml51jb6pp0WRMRmMWGsgg8ocvlElAv72g8mHhQvc,549
|
|
105
|
-
manim/renderer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
|
-
manim/renderer/cairo_renderer.py,sha256=rjJYr6BgFtozuPgKujhTb0stmLYeVemtYo4HipL6W_k,8944
|
|
107
|
-
manim/renderer/opengl_renderer.py,sha256=8Sr6pCTMQVep_l8NgdF39BU2FBzQbO64Kqi3Kvgd-EQ,20766
|
|
108
|
-
manim/renderer/opengl_renderer_window.py,sha256=FtYirD5jn3xOnHNGQECTwxnjBSEtsshqBS3O4wxL2tg,4887
|
|
109
|
-
manim/renderer/shader.py,sha256=0RwNOD1re_p5jlveNPvd9152AIJCRCQc9OfHQPL_44Q,14747
|
|
110
|
-
manim/renderer/shader_wrapper.py,sha256=-jBjxqYlUoZlWMlBxaIwuxaIf3MmWAXqCDaKdFB_Dvw,5888
|
|
111
|
-
manim/renderer/shaders/default/frag.glsl,sha256=FEQmM7RUwcZlxPu5lkDcEXoyR2EfKjNC9hpaPce_ZBE,98
|
|
112
|
-
manim/renderer/shaders/default/vert.glsl,sha256=0thKIk9CzuSLGLh-6RyvFZDsnoSTpVC0v2WNjryMGIM,232
|
|
113
|
-
manim/renderer/shaders/design.frag,sha256=drjgYTVETgocxxw1HqCK7Dc3WPS8kYMy4jmhwRy7EDY,216
|
|
114
|
-
manim/renderer/shaders/design_2.frag,sha256=0TbGy2iXwHeYVaevH7q3VH0AVM54KpONdl9bW4CO1iU,961
|
|
115
|
-
manim/renderer/shaders/design_3.frag,sha256=UlSV0TmcuYmG5EmtNZQgU4kWo0j7neByEClwbXD0h6w,1301
|
|
116
|
-
manim/renderer/shaders/image/frag.glsl,sha256=UZ7Yym-2tpEnnwXpD_-SIOXqt8cNTxnCzFoUUeRyRS0,200
|
|
117
|
-
manim/renderer/shaders/image/vert.glsl,sha256=Hfu3lyryOu5MvS0noJYlV-0vwOG7tNUFkZKMjVfg658,459
|
|
118
|
-
manim/renderer/shaders/include/NOTE.md,sha256=QKht_AYgi0FgRsD1HiG-AUZZPqEAloaJK64GgkuN8mY,582
|
|
119
|
-
manim/renderer/shaders/include/add_light.glsl,sha256=Me-idksLiLW9ORe5mmekgak1RL3m2-J_Yftcql9nDrY,1600
|
|
120
|
-
manim/renderer/shaders/include/camera_uniform_declarations.glsl,sha256=--B_TrdWpq6sVs-gK7yrkJYIXmSkPE_k_27NNs6mOoE,254
|
|
121
|
-
manim/renderer/shaders/include/finalize_color.glsl,sha256=8CeC46PTrNA3LB4SolWw_EHdz87H4pFmm3-r5iysDz8,1864
|
|
122
|
-
manim/renderer/shaders/include/get_gl_Position.glsl,sha256=qaeeXlQOIBZisRC3scExg1LoFpOxHXTqbZYclIPbVac,1245
|
|
123
|
-
manim/renderer/shaders/include/get_rotated_surface_unit_normal_vector.glsl,sha256=76EfKsK1vwuNa7_9hgw-W_Cx3iZ3zpVY4KA6Fa69Gw0,551
|
|
124
|
-
manim/renderer/shaders/include/get_unit_normal.glsl,sha256=bmASU8UvsWunNcj-kdtJKjhBNLvG5pUdYn4iDOzg1Tw,773
|
|
125
|
-
manim/renderer/shaders/include/position_point_into_frame.glsl,sha256=4KMgtO2xlaASeR6uD2GKJMfAi7fuiYL32u_rFKtF5IE,742
|
|
126
|
-
manim/renderer/shaders/include/quadratic_bezier_distance.glsl,sha256=ujrpryJfKH_MY5SAd4a8T4U_ZLX1o0bBu6DdmTkOxTc,2853
|
|
127
|
-
manim/renderer/shaders/include/quadratic_bezier_geometry_functions.glsl,sha256=pjQQjecQOugsoZgN2cXY5HKG1uME6rJ0EDqFJgCqX7k,2747
|
|
128
|
-
manim/renderer/shaders/manim_coords/frag.glsl,sha256=FEQmM7RUwcZlxPu5lkDcEXoyR2EfKjNC9hpaPce_ZBE,98
|
|
129
|
-
manim/renderer/shaders/manim_coords/vert.glsl,sha256=GMKQNT4YTWiHaeo8Vt5YfaFqJaeukEVxz4rYM1E1fRM,287
|
|
130
|
-
manim/renderer/shaders/quadratic_bezier_fill/frag.glsl,sha256=YTMxssSBy9Jw4-7M55L2pX0CdUW0h9cButmIuP8X9Uw,1836
|
|
131
|
-
manim/renderer/shaders/quadratic_bezier_fill/geom.glsl,sha256=jKXzyZ884bdmcl0SOSHD6xiRY1Oz6OTEWAcDPXUqLrc,3544
|
|
132
|
-
manim/renderer/shaders/quadratic_bezier_fill/vert.glsl,sha256=ZqPIgPAO_vADjfdyurk7GFDUyv85bG0nCAyYEsK4R-c,523
|
|
133
|
-
manim/renderer/shaders/quadratic_bezier_stroke/frag.glsl,sha256=Y5hLAhwygRIWtS-mq2kNYFae99cxRaAOfBap4gVpt3A,2683
|
|
134
|
-
manim/renderer/shaders/quadratic_bezier_stroke/geom.glsl,sha256=DkQZVQiOLS_-3IW02L7shkGT4DMdEwmZ5IObW3UQipE,9059
|
|
135
|
-
manim/renderer/shaders/quadratic_bezier_stroke/vert.glsl,sha256=tKhrGSFDRvbzE8Tuq7HBX28Po5aBpL4Imxq2lvmas-Y,743
|
|
136
|
-
manim/renderer/shaders/simple_vert.glsl,sha256=TbktrXHFjx_E3hh_pIhdRB49wP0lBjwVr3pVhSM9ZBE,296
|
|
137
|
-
manim/renderer/shaders/surface/frag.glsl,sha256=89jqCkBp-f7ulliICIBQVD-6rlXmzLEOalSvrxbLJY4,396
|
|
138
|
-
manim/renderer/shaders/surface/vert.glsl,sha256=I7JTYje09VTPmkQY6aYtO8oE0FjoTBeQVUgRY6MSkDo,567
|
|
139
|
-
manim/renderer/shaders/test/frag.glsl,sha256=vE4h2JLaY4XKgnFLZg5x07jBnLG-Z5YyzVb189yUzsA,96
|
|
140
|
-
manim/renderer/shaders/test/vert.glsl,sha256=_rTflweplsaDNDY0vm70K0wUtzELbeauOS7Kx_fCc3U,152
|
|
141
|
-
manim/renderer/shaders/textured_surface/frag.glsl,sha256=7HHOlQC0jEN1R7N0frUpPOqSHj8PZZHaOUdsd_tfF2A,956
|
|
142
|
-
manim/renderer/shaders/textured_surface/vert.glsl,sha256=11ZxiIDxJiOev3LRpnhH57KKHI7jZri8egaYm9RfGt0,647
|
|
143
|
-
manim/renderer/shaders/true_dot/frag.glsl,sha256=IN4GuJBmwr17IBgxNg-mPzkwOEQV2ggUCSxbbMft3Ec,791
|
|
144
|
-
manim/renderer/shaders/true_dot/geom.glsl,sha256=Dyzn7dmICA6-zH_aNATBiq_Omt6U2UF4MBG9gstogrw,1101
|
|
145
|
-
manim/renderer/shaders/true_dot/vert.glsl,sha256=LUYkOS-WYj8DEb0CcyWPovslevus81-cgbspJVraY_o,362
|
|
146
|
-
manim/renderer/shaders/vectorized_mobject_fill/frag.glsl,sha256=UFVAChopcw4nrEUnPywV9rjFohY2_RTe3qQermGhBbo,324
|
|
147
|
-
manim/renderer/shaders/vectorized_mobject_fill/vert.glsl,sha256=uAvuQoulD_2nJ9JxvnutM4saFke2mTpU3c46_2ZC6lw,435
|
|
148
|
-
manim/renderer/shaders/vectorized_mobject_stroke/frag.glsl,sha256=Rgbdwi-UVQyTmikHYQioo8vnt9hInA4TIzebBARzoX4,2720
|
|
149
|
-
manim/renderer/shaders/vectorized_mobject_stroke/vert.glsl,sha256=yOKnXHyDKJ805_RveoLLVJFUXRF0HKBBRfKkjjRaebY,4430
|
|
150
|
-
manim/renderer/shaders/vertex_colors/frag.glsl,sha256=nGY9iyvoYy9pfjtiFDsZ1TFQsXHQ2kkz0S0Imgl2kO4,93
|
|
151
|
-
manim/renderer/shaders/vertex_colors/vert.glsl,sha256=I1HQwwKS0pmnfVnLAMAXsUJY4ynXf7ha3CaZuSkPshI,281
|
|
152
|
-
manim/renderer/vectorized_mobject_rendering.py,sha256=YLodUc5lRHqawL2kvugJuNvM7lQj6FVepeZuF4Oznsk,9284
|
|
153
|
-
manim/scene/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
|
-
manim/scene/moving_camera_scene.py,sha256=Vg5I6Zd_kG27JNi14dphwkOXK8UU2E0cQ1l188FDQuw,3765
|
|
155
|
-
manim/scene/scene.py,sha256=-lAu4D4SQmmqgXRFgzCdtJ6QjNsJJUUonUM25qacnPA,57976
|
|
156
|
-
manim/scene/scene_file_writer.py,sha256=AECWg_AyLbfmX5uAq27pWMEqWCCT-S9QqKUMJFifztk,26288
|
|
157
|
-
manim/scene/section.py,sha256=VUmKsyGLU2MFWhSkSo3iSNYWoQ1HicXAO46eMorqeb4,3629
|
|
158
|
-
manim/scene/three_d_scene.py,sha256=LpyvqhjSipBeAoYSo_GYUhm5-NB1mvnz7EiBnR8rFLo,19757
|
|
159
|
-
manim/scene/vector_space_scene.py,sha256=9GVFeQ0oGeBvsNlXbY4axfD0K_9tKBoPsusRTnOpFJE,37668
|
|
160
|
-
manim/scene/zoomed_scene.py,sha256=eC6WO8OYOT-V7REtUlhXdqTyI9HrdPWFOnlY90blEUA,6980
|
|
161
|
-
manim/templates/Axes.mtp,sha256=gfMRnB0PjXF0m6u9IcbI_pm48eDqxCkylKICWdDAP-M,313
|
|
162
|
-
manim/templates/Default.mtp,sha256=AHqIgMY-rjIHaeuFSgi4n2KXaLORmACjTdPhUnFgZdY,547
|
|
163
|
-
manim/templates/MovingCamera.mtp,sha256=NLiT2ZPutKTzt8As2gDJDqXMBNB8d-7Y3PFXS0HhMas,327
|
|
164
|
-
manim/templates/template.cfg,sha256=XKiKX2mMT7x_3-EiPKAhHUpuiW_K4_RU6Iu1ZYOzQzw,134
|
|
165
|
-
manim/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
166
|
-
manim/utils/bezier.py,sha256=tiYkRnbSAo-hCTp0_-YeM9d4ZZusHRV99lX5uQtu4yY,19612
|
|
167
|
-
manim/utils/caching.py,sha256=0TkmV5GtZYKgskMI4XMV-kAh3_kamIu5-Pl4nN9D_ws,2709
|
|
168
|
-
manim/utils/color.py,sha256=aU5LT6WjmFtRkqdLaBmvZaJgbJ8pseTG_vSlPKyFLJU,14373
|
|
169
|
-
manim/utils/commands.py,sha256=FcjAP3caIazSnq411xL0BJMQl6c6W9BRYapSU742zrg,1237
|
|
170
|
-
manim/utils/config_ops.py,sha256=LeeZXTxEHqzbzML1kuBe9VxEDz9chPfRlMWFkUSDrOA,2101
|
|
171
|
-
manim/utils/debug.py,sha256=6vQ9j-cFEDfk3tdhmLTywYjONyqDohyMVNhC5eg5cUY,2234
|
|
172
|
-
manim/utils/deprecation.py,sha256=PFy2RaFm0RUew083onN6h90RNQ3KQi0OrupeoRP3nis,15062
|
|
173
|
-
manim/utils/docbuild/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
174
|
-
manim/utils/docbuild/manim_directive.py,sha256=DeTiV7IZgrVx7teHTlXwaqi58apGq3uNAjZDqfz67bE,12742
|
|
175
|
-
manim/utils/exceptions.py,sha256=MvH8f1xcwY3hr8IayTfWMe6u_gNlIYfChlsRzFT_v-U,197
|
|
176
|
-
manim/utils/family.py,sha256=s_aKqTIXTNMMnq_5rDYgZtx0AipTjjlymPmmdjO3qdw,1176
|
|
177
|
-
manim/utils/family_ops.py,sha256=EHfHdhAkl8VdoVQxvTXrNvKhAp7t0DUSk_6gVaW3pG8,1446
|
|
178
|
-
manim/utils/file_ops.py,sha256=zWn7T0mL8jV65ymcQbjq3Gok97k-otzDOaKzeE-xG4A,7683
|
|
179
|
-
manim/utils/hashing.py,sha256=VbBBEIDyHF1OiI8bLqZhY7FhjFqROql5n7XQ9Esyiew,13502
|
|
180
|
-
manim/utils/images.py,sha256=BDuBDFWfugl-ibLNhtThOzIl3GvjfYckJlnUfckVWJ0,1664
|
|
181
|
-
manim/utils/ipython_magic.py,sha256=bQGuULr19o5IXFXm5HclONX2UV_0agsMLg-y_t8BQhc,7801
|
|
182
|
-
manim/utils/iterables.py,sha256=rg8mtqhQ6Cw_ICcmGdYk4ATPh6JP8WLTOL5CGK8uVLE,12300
|
|
183
|
-
manim/utils/module_ops.py,sha256=arTMpCA6x6FUQDe98V8sKiidCK6tq_HpLo-MFcW7HRA,4514
|
|
184
|
-
manim/utils/opengl.py,sha256=z-bMa0StytF3zxFXsJSwoQR4BV8jSK3FTWilUKZMYlo,3352
|
|
185
|
-
manim/utils/paths.py,sha256=gm-tf7cOtboP0RwJ0vdp7oqSukvmEbAnGrwKBo_YT8U,11723
|
|
186
|
-
manim/utils/rate_functions.py,sha256=-js8ACINyuP-EDJuX4rcVy40McgAYrvKJnLWzuBlou0,11690
|
|
187
|
-
manim/utils/simple_functions.py,sha256=aCeFesZGt8znf9EERW4zQFE2QmK9sSdV-GT2KF-BRTM,3919
|
|
188
|
-
manim/utils/sounds.py,sha256=jzxC3C6sITuBnQabHIWQVQ5WEpA0RRw1JOik81UlHn0,475
|
|
189
|
-
manim/utils/space_ops.py,sha256=8lIxw2H3ZfJPVboQWNR2NgK5fpuMmPpJjddhy-hedoE,21816
|
|
190
|
-
manim/utils/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
|
-
manim/utils/testing/_frames_testers.py,sha256=oRFls38xjqW1h-tv-MMFtIZNRxxT45zLYjQZiXlRat8,3808
|
|
192
|
-
manim/utils/testing/_show_diff.py,sha256=qsY8VpBPAjOxaZetsFLr6Fz_xgJAGCBuucn6aretVDw,1723
|
|
193
|
-
manim/utils/testing/_test_class_makers.py,sha256=QiBrFqfxoeFCgAsAFyIU4WvsKo807hxDx6K9jh-Q0ms,2074
|
|
194
|
-
manim/utils/testing/config_graphical_tests_monoframe.cfg,sha256=FCf168PQDrTiwv-WurqRDyL4ndwtfBvTS9Bl23MEAyE,161
|
|
195
|
-
manim/utils/testing/config_graphical_tests_multiframes.cfg,sha256=bzzl4TpReJ7E4JR0OazZnXp1JFvje9rbYP5p3sDF0ys,158
|
|
196
|
-
manim/utils/testing/frames_comparison.py,sha256=lPdc9UcENwliNxb3SKu_UXGqYgJeYN2DhcYgqas_4vA,9776
|
|
197
|
-
manim/utils/tex.py,sha256=dyEuj7b5Mur_UBg4QJieGX-vDoBXIWvWXYa0Z98T_oo,9275
|
|
198
|
-
manim/utils/tex_file_writing.py,sha256=ku8gz8QD4y4x3d4QT8tumCIUo26kduSF3F-skPO5MFk,10329
|
|
199
|
-
manim/utils/tex_templates.py,sha256=2NBznl_0CVG1VC46ciDTjwfCCgqvhmq8_OfC6z6i1xo,28517
|
|
200
|
-
manim/utils/unit.py,sha256=5xJOBYysVqSLIsb6xDviaRdG2U9SRAWHx-pLvtc4yVk,941
|
|
201
|
-
manim-0.17.0.dist-info/entry_points.txt,sha256=T_f5FcXeR4Hoz6Bf4reBBM8LzwalFtW4pXXyU7rsuo0,73
|
|
202
|
-
manim-0.17.0.dist-info/LICENSE.community,sha256=cdbuve4GvO2BO9RxrV4gPYk3za34mHK6erh-vXJYw-c,1088
|
|
203
|
-
manim-0.17.0.dist-info/LICENSE,sha256=xqki_Bz67XrA-Hqh3Hfr9aPI0czFqwHaMxU_DQE78Bk,1072
|
|
204
|
-
manim-0.17.0.dist-info/WHEEL,sha256=vxFmldFsRN_Hx10GDvsdv1wroKq8r5Lzvjp6GZ4OO8c,88
|
|
205
|
-
manim-0.17.0.dist-info/METADATA,sha256=4EB6Zp6zlUG-D9fSxsjQUQX7HuzVt89oURpdCdTYItM,11311
|
|
206
|
-
manim-0.17.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|