├── .gitignore ├── LICENSE.md ├── README.md ├── examples ├── create.py ├── formula.py ├── interactive.py ├── interactive_game.py ├── lagged_animation.py ├── oit.py ├── shape_transform.py ├── text_select.py ├── text_transform.py ├── three_d.py └── write_animation.py ├── logo.png ├── manim3 ├── __init__.py ├── animatables │ ├── animatable │ │ ├── action.py │ │ ├── animatable.py │ │ ├── animation.py │ │ └── piecewiser.py │ ├── arrays │ │ ├── animatable_array.py │ │ ├── animatable_color.py │ │ ├── animatable_float.py │ │ └── model_matrix.py │ ├── camera.py │ ├── graph.py │ ├── lighting.py │ ├── lights │ │ ├── ambient_light.py │ │ └── point_light.py │ ├── mesh.py │ ├── model.py │ ├── point.py │ └── shape.py ├── constants │ ├── constants.py │ ├── custom_typing.py │ ├── palette.py │ ├── pyglet_constants.py │ └── rates.py ├── lazy │ ├── lazy.py │ ├── lazy_descriptor.py │ ├── lazy_object.py │ └── lazy_slot.py ├── mobjects │ ├── cached_mobject.py │ ├── graph_mobjects │ │ ├── graph_mobject.py │ │ ├── line.py │ │ └── polyline.py │ ├── image_mobject.py │ ├── mesh_mobjects │ │ ├── mesh_mobject.py │ │ ├── parametric_surface.py │ │ ├── plane.py │ │ └── sphere.py │ ├── mobject.py │ ├── shape_mobjects │ │ ├── circle.py │ │ ├── polygon.py │ │ ├── polyhedra.py │ │ ├── regular_polygon.py │ │ ├── shape_mobject.py │ │ └── square.py │ ├── string_mobjects │ │ ├── code_mobject.py │ │ ├── math_mobject.py │ │ ├── text_mobject.py │ │ └── typst_mobject.py │ └── svg_mobject.py ├── rendering │ ├── buffers │ │ ├── attributes_buffer.py │ │ ├── buffer.py │ │ ├── texture_buffer.py │ │ └── uniform_block_buffer.py │ ├── field.py │ ├── framebuffers │ │ ├── final_framebuffer.py │ │ ├── framebuffer.py │ │ └── oit_framebuffer.py │ ├── mgl_enums.py │ └── vertex_array.py ├── shaders │ ├── graph.glsl │ ├── includes │ │ └── write_to_oit_frag.glsl │ ├── mesh.glsl │ └── oit_compose.glsl ├── timelines │ ├── composition │ │ ├── lagged.py │ │ ├── parallel.py │ │ └── series.py │ ├── fade │ │ ├── fade_in.py │ │ ├── fade_out.py │ │ └── fade_transform.py │ ├── piecewise │ │ ├── create.py │ │ ├── dashed.py │ │ ├── flash.py │ │ └── uncreate.py │ ├── timeline.py │ └── transform │ │ └── transform.py └── toplevel │ ├── config.py │ ├── context.py │ ├── events.py │ ├── logger.py │ ├── renderer.py │ ├── scene.py │ ├── timer.py │ ├── toplevel.py │ ├── toplevel_resource.py │ └── window.py ├── pyproject.toml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/README.md -------------------------------------------------------------------------------- /examples/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/examples/create.py -------------------------------------------------------------------------------- /examples/formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/examples/formula.py -------------------------------------------------------------------------------- /examples/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/examples/interactive.py -------------------------------------------------------------------------------- /examples/interactive_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/examples/interactive_game.py -------------------------------------------------------------------------------- /examples/lagged_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/examples/lagged_animation.py -------------------------------------------------------------------------------- /examples/oit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/examples/oit.py -------------------------------------------------------------------------------- /examples/shape_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/examples/shape_transform.py -------------------------------------------------------------------------------- /examples/text_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/examples/text_select.py -------------------------------------------------------------------------------- /examples/text_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/examples/text_transform.py -------------------------------------------------------------------------------- /examples/three_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/examples/three_d.py -------------------------------------------------------------------------------- /examples/write_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/examples/write_animation.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/logo.png -------------------------------------------------------------------------------- /manim3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/__init__.py -------------------------------------------------------------------------------- /manim3/animatables/animatable/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/animatable/action.py -------------------------------------------------------------------------------- /manim3/animatables/animatable/animatable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/animatable/animatable.py -------------------------------------------------------------------------------- /manim3/animatables/animatable/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/animatable/animation.py -------------------------------------------------------------------------------- /manim3/animatables/animatable/piecewiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/animatable/piecewiser.py -------------------------------------------------------------------------------- /manim3/animatables/arrays/animatable_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/arrays/animatable_array.py -------------------------------------------------------------------------------- /manim3/animatables/arrays/animatable_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/arrays/animatable_color.py -------------------------------------------------------------------------------- /manim3/animatables/arrays/animatable_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/arrays/animatable_float.py -------------------------------------------------------------------------------- /manim3/animatables/arrays/model_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/arrays/model_matrix.py -------------------------------------------------------------------------------- /manim3/animatables/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/camera.py -------------------------------------------------------------------------------- /manim3/animatables/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/graph.py -------------------------------------------------------------------------------- /manim3/animatables/lighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/lighting.py -------------------------------------------------------------------------------- /manim3/animatables/lights/ambient_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/lights/ambient_light.py -------------------------------------------------------------------------------- /manim3/animatables/lights/point_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/lights/point_light.py -------------------------------------------------------------------------------- /manim3/animatables/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/mesh.py -------------------------------------------------------------------------------- /manim3/animatables/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/model.py -------------------------------------------------------------------------------- /manim3/animatables/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/point.py -------------------------------------------------------------------------------- /manim3/animatables/shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/animatables/shape.py -------------------------------------------------------------------------------- /manim3/constants/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/constants/constants.py -------------------------------------------------------------------------------- /manim3/constants/custom_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/constants/custom_typing.py -------------------------------------------------------------------------------- /manim3/constants/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/constants/palette.py -------------------------------------------------------------------------------- /manim3/constants/pyglet_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/constants/pyglet_constants.py -------------------------------------------------------------------------------- /manim3/constants/rates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/constants/rates.py -------------------------------------------------------------------------------- /manim3/lazy/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/lazy/lazy.py -------------------------------------------------------------------------------- /manim3/lazy/lazy_descriptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/lazy/lazy_descriptor.py -------------------------------------------------------------------------------- /manim3/lazy/lazy_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/lazy/lazy_object.py -------------------------------------------------------------------------------- /manim3/lazy/lazy_slot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/lazy/lazy_slot.py -------------------------------------------------------------------------------- /manim3/mobjects/cached_mobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/cached_mobject.py -------------------------------------------------------------------------------- /manim3/mobjects/graph_mobjects/graph_mobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/graph_mobjects/graph_mobject.py -------------------------------------------------------------------------------- /manim3/mobjects/graph_mobjects/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/graph_mobjects/line.py -------------------------------------------------------------------------------- /manim3/mobjects/graph_mobjects/polyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/graph_mobjects/polyline.py -------------------------------------------------------------------------------- /manim3/mobjects/image_mobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/image_mobject.py -------------------------------------------------------------------------------- /manim3/mobjects/mesh_mobjects/mesh_mobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/mesh_mobjects/mesh_mobject.py -------------------------------------------------------------------------------- /manim3/mobjects/mesh_mobjects/parametric_surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/mesh_mobjects/parametric_surface.py -------------------------------------------------------------------------------- /manim3/mobjects/mesh_mobjects/plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/mesh_mobjects/plane.py -------------------------------------------------------------------------------- /manim3/mobjects/mesh_mobjects/sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/mesh_mobjects/sphere.py -------------------------------------------------------------------------------- /manim3/mobjects/mobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/mobject.py -------------------------------------------------------------------------------- /manim3/mobjects/shape_mobjects/circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/shape_mobjects/circle.py -------------------------------------------------------------------------------- /manim3/mobjects/shape_mobjects/polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/shape_mobjects/polygon.py -------------------------------------------------------------------------------- /manim3/mobjects/shape_mobjects/polyhedra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/shape_mobjects/polyhedra.py -------------------------------------------------------------------------------- /manim3/mobjects/shape_mobjects/regular_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/shape_mobjects/regular_polygon.py -------------------------------------------------------------------------------- /manim3/mobjects/shape_mobjects/shape_mobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/shape_mobjects/shape_mobject.py -------------------------------------------------------------------------------- /manim3/mobjects/shape_mobjects/square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/shape_mobjects/square.py -------------------------------------------------------------------------------- /manim3/mobjects/string_mobjects/code_mobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/string_mobjects/code_mobject.py -------------------------------------------------------------------------------- /manim3/mobjects/string_mobjects/math_mobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/string_mobjects/math_mobject.py -------------------------------------------------------------------------------- /manim3/mobjects/string_mobjects/text_mobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/string_mobjects/text_mobject.py -------------------------------------------------------------------------------- /manim3/mobjects/string_mobjects/typst_mobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/string_mobjects/typst_mobject.py -------------------------------------------------------------------------------- /manim3/mobjects/svg_mobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/mobjects/svg_mobject.py -------------------------------------------------------------------------------- /manim3/rendering/buffers/attributes_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/rendering/buffers/attributes_buffer.py -------------------------------------------------------------------------------- /manim3/rendering/buffers/buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/rendering/buffers/buffer.py -------------------------------------------------------------------------------- /manim3/rendering/buffers/texture_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/rendering/buffers/texture_buffer.py -------------------------------------------------------------------------------- /manim3/rendering/buffers/uniform_block_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/rendering/buffers/uniform_block_buffer.py -------------------------------------------------------------------------------- /manim3/rendering/field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/rendering/field.py -------------------------------------------------------------------------------- /manim3/rendering/framebuffers/final_framebuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/rendering/framebuffers/final_framebuffer.py -------------------------------------------------------------------------------- /manim3/rendering/framebuffers/framebuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/rendering/framebuffers/framebuffer.py -------------------------------------------------------------------------------- /manim3/rendering/framebuffers/oit_framebuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/rendering/framebuffers/oit_framebuffer.py -------------------------------------------------------------------------------- /manim3/rendering/mgl_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/rendering/mgl_enums.py -------------------------------------------------------------------------------- /manim3/rendering/vertex_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/rendering/vertex_array.py -------------------------------------------------------------------------------- /manim3/shaders/graph.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/shaders/graph.glsl -------------------------------------------------------------------------------- /manim3/shaders/includes/write_to_oit_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/shaders/includes/write_to_oit_frag.glsl -------------------------------------------------------------------------------- /manim3/shaders/mesh.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/shaders/mesh.glsl -------------------------------------------------------------------------------- /manim3/shaders/oit_compose.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/shaders/oit_compose.glsl -------------------------------------------------------------------------------- /manim3/timelines/composition/lagged.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/timelines/composition/lagged.py -------------------------------------------------------------------------------- /manim3/timelines/composition/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/timelines/composition/parallel.py -------------------------------------------------------------------------------- /manim3/timelines/composition/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/timelines/composition/series.py -------------------------------------------------------------------------------- /manim3/timelines/fade/fade_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/timelines/fade/fade_in.py -------------------------------------------------------------------------------- /manim3/timelines/fade/fade_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/timelines/fade/fade_out.py -------------------------------------------------------------------------------- /manim3/timelines/fade/fade_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/timelines/fade/fade_transform.py -------------------------------------------------------------------------------- /manim3/timelines/piecewise/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/timelines/piecewise/create.py -------------------------------------------------------------------------------- /manim3/timelines/piecewise/dashed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/timelines/piecewise/dashed.py -------------------------------------------------------------------------------- /manim3/timelines/piecewise/flash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/timelines/piecewise/flash.py -------------------------------------------------------------------------------- /manim3/timelines/piecewise/uncreate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/timelines/piecewise/uncreate.py -------------------------------------------------------------------------------- /manim3/timelines/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/timelines/timeline.py -------------------------------------------------------------------------------- /manim3/timelines/transform/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/timelines/transform/transform.py -------------------------------------------------------------------------------- /manim3/toplevel/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/toplevel/config.py -------------------------------------------------------------------------------- /manim3/toplevel/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/toplevel/context.py -------------------------------------------------------------------------------- /manim3/toplevel/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/toplevel/events.py -------------------------------------------------------------------------------- /manim3/toplevel/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/toplevel/logger.py -------------------------------------------------------------------------------- /manim3/toplevel/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/toplevel/renderer.py -------------------------------------------------------------------------------- /manim3/toplevel/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/toplevel/scene.py -------------------------------------------------------------------------------- /manim3/toplevel/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/toplevel/timer.py -------------------------------------------------------------------------------- /manim3/toplevel/toplevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/toplevel/toplevel.py -------------------------------------------------------------------------------- /manim3/toplevel/toplevel_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/toplevel/toplevel_resource.py -------------------------------------------------------------------------------- /manim3/toplevel/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/manim3/toplevel/window.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YishiMichael/manim3/HEAD/requirements.txt --------------------------------------------------------------------------------