├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── ManimTutorial ├── 00_installation.py ├── 01_make_square.py ├── 02_rose_pattern.py ├── 03_graphs.py ├── 04_generating_text.py ├── 05_strange_attractor.py ├── 06_interactive_manim.py ├── 07_manim_shaders.py ├── 08_shader_coding.py ├── 09_surfaces.py ├── black_hole │ ├── frag.glsl │ └── vert.glsl └── my_first_shader │ ├── frag.glsl │ └── vert.glsl ├── README.md ├── _2024 ├── chaotic_oscillator.py └── probability_puzzle.py ├── _2025 └── navier_stokes │ ├── fluid_simulation.py │ └── ns.py ├── archived ├── double_pendulum.py ├── double_pendulum_chaos.py ├── dragon_fractal.py ├── hilbert_curve.py ├── lorenz_attractor.py ├── pendulum_chaos.py ├── pi_visualization.py ├── recaman_sequence.py ├── rose_pattern.py └── times_table.py ├── custom ├── __init__.py ├── animations.py ├── constants.py ├── objects.py └── scene.py ├── custom_config.yml └── manim_imports.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/.gitignore -------------------------------------------------------------------------------- /ManimTutorial/00_installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/00_installation.py -------------------------------------------------------------------------------- /ManimTutorial/01_make_square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/01_make_square.py -------------------------------------------------------------------------------- /ManimTutorial/02_rose_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/02_rose_pattern.py -------------------------------------------------------------------------------- /ManimTutorial/03_graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/03_graphs.py -------------------------------------------------------------------------------- /ManimTutorial/04_generating_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/04_generating_text.py -------------------------------------------------------------------------------- /ManimTutorial/05_strange_attractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/05_strange_attractor.py -------------------------------------------------------------------------------- /ManimTutorial/06_interactive_manim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/06_interactive_manim.py -------------------------------------------------------------------------------- /ManimTutorial/07_manim_shaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/07_manim_shaders.py -------------------------------------------------------------------------------- /ManimTutorial/08_shader_coding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/08_shader_coding.py -------------------------------------------------------------------------------- /ManimTutorial/09_surfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/09_surfaces.py -------------------------------------------------------------------------------- /ManimTutorial/black_hole/frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/black_hole/frag.glsl -------------------------------------------------------------------------------- /ManimTutorial/black_hole/vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/black_hole/vert.glsl -------------------------------------------------------------------------------- /ManimTutorial/my_first_shader/frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/my_first_shader/frag.glsl -------------------------------------------------------------------------------- /ManimTutorial/my_first_shader/vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/ManimTutorial/my_first_shader/vert.glsl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/README.md -------------------------------------------------------------------------------- /_2024/chaotic_oscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/_2024/chaotic_oscillator.py -------------------------------------------------------------------------------- /_2024/probability_puzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/_2024/probability_puzzle.py -------------------------------------------------------------------------------- /_2025/navier_stokes/fluid_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/_2025/navier_stokes/fluid_simulation.py -------------------------------------------------------------------------------- /_2025/navier_stokes/ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/_2025/navier_stokes/ns.py -------------------------------------------------------------------------------- /archived/double_pendulum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/archived/double_pendulum.py -------------------------------------------------------------------------------- /archived/double_pendulum_chaos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/archived/double_pendulum_chaos.py -------------------------------------------------------------------------------- /archived/dragon_fractal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/archived/dragon_fractal.py -------------------------------------------------------------------------------- /archived/hilbert_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/archived/hilbert_curve.py -------------------------------------------------------------------------------- /archived/lorenz_attractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/archived/lorenz_attractor.py -------------------------------------------------------------------------------- /archived/pendulum_chaos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/archived/pendulum_chaos.py -------------------------------------------------------------------------------- /archived/pi_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/archived/pi_visualization.py -------------------------------------------------------------------------------- /archived/recaman_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/archived/recaman_sequence.py -------------------------------------------------------------------------------- /archived/rose_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/archived/rose_pattern.py -------------------------------------------------------------------------------- /archived/times_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/archived/times_table.py -------------------------------------------------------------------------------- /custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/custom/__init__.py -------------------------------------------------------------------------------- /custom/animations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/custom/animations.py -------------------------------------------------------------------------------- /custom/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/custom/constants.py -------------------------------------------------------------------------------- /custom/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/custom/objects.py -------------------------------------------------------------------------------- /custom/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/custom/scene.py -------------------------------------------------------------------------------- /custom_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/custom_config.yml -------------------------------------------------------------------------------- /manim_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Varniex/animations/HEAD/manim_imports.py --------------------------------------------------------------------------------