A community-maintained Python framework for creating mathematical animations. https://www.manim.community
  • Python 98.2%
  • GLSL 1.6%
  • Dockerfile 0.1%
Find a file
Hugues Devimeux fc6159b45d
Refactored play logic (#1019)
* refactored play logic

* fixed tests (and minor improvement)

* moved time progression generation

* fixed typo :/

* added tests

* fixed tests

* fixed imports

* fixed tests

* black

* fixed tests in  python 3.7

* fixed tests for python 3.7

* Update manim/renderer/cairo_renderer.py

* removed is_cached variable

* updated webgl renderer and removed redondent code

* Update manim/scene/scene.py

* Add self.duration back into compile_animation_data

* Fixed openGL ?

* black

* fixed merge conflict by adding fixture marker

* Called begin_animation to fix OpenGL

* Fixed original_skippingstatu sname for opengl renderer

* Update manim/utils/caching.py

Co-authored-by: Devin Neal <devin@eulertour.com>

Co-authored-by: Hugues Devimeux <hugues.devimeux@gmail.com>
Co-authored-by: Jason G. Villanueva <a@jsonvillanueva.com>
Co-authored-by: Devin Neal <devin@eulertour.com>
2021-03-23 09:58:49 +01:00
.github Add OpenGL Renderer (#1075) 2021-03-13 20:04:19 -08:00
docker docs: update installation docs for linux - pango (#1060) 2021-02-28 10:03:03 +01:00
docs Docs: Added code example to Mobject.get_critical_point(), fixed some broken formatting, added some links to installation guides (#1077) 2021-03-23 00:52:57 +01:00
example_scenes Add keyboard controls 2021-03-15 19:53:17 -07:00
logo add monochromatic versions of logo (#826) 2020-12-04 08:58:43 +05:30
manim Refactored play logic (#1019) 2021-03-23 09:58:49 +01:00
scripts fix - use absolute path in make_and_open_docs.py (#1048) 2021-02-26 07:06:38 +01:00
tests Refactored play logic (#1019) 2021-03-23 09:58:49 +01:00
.dockerignore Post-release update for docker readme (#815) 2020-12-03 16:26:52 +05:30
.gitattributes Js tweening (#952) 2021-01-29 08:33:49 -08:00
.gitignore SVG engine rewrite and tests (#915) 2021-02-26 22:22:09 +05:30
.pylintrc Add pylint to requirements and docs, add .pylintrc (#478) 2020-09-25 22:47:45 -07:00
.readthedocs.yml Render videos while building documentation (#402) 2020-09-11 16:22:06 -04:00
CODE_OF_CONDUCT.md Added code of conduct (#935) 2021-01-18 19:14:57 +05:30
LICENSE add community license as separate from 3b1b original license 2020-05-29 21:15:43 -04:00
LICENSE.community Update license year (#953) 2021-01-24 13:17:04 -05:00
poetry.lock poetry lock 2021-03-13 19:48:09 -08:00
pyproject.toml Bump manimpango 2021-03-13 19:16:09 -08:00
README.md Enhancement (of new feature): JupyterLab docker image and documentation for manim and IPython (#977) 2021-01-31 18:24:21 +01:00



PyPI Latest Release Docker image MIT License Reddit Twitter Discord Code style: black Documentation Status Downloads CI

An animation engine for explanatory math videos


Manim is an animation engine for explanatory math videos. It's used to create precise animations programmatically, as demonstrated in the videos of 3Blue1Brown.

NOTE: This repository is maintained by the Manim Community, and is not associated with Grant Sanderson or 3Blue1Brown in any way (although we are definitely indebted to him for providing his work to the world). If you would like to study how Grant makes his videos, head over to his repository (3b1b/manim). This fork is updated more frequently than his, and it's recommended to use this fork if you'd like to use Manim for your own projects.

Table of Contents:

Installation

Manim requires a few dependencies that must be installed prior to using it. If you want to try it out first before installing it locally, you can do so in our online Jupyter environment.

For the local installation, please visit the Documentation and follow the appropriate instructions for your operating system.

Once the dependencies have been installed, run the following in a terminal window:

pip install manim

Usage

Manim is an extremely versatile package. The following is an example Scene you can construct:

from manim import *


class SquareToCircle(Scene):
    def construct(self):
        circle = Circle()
        square = Square()
        square.flip(RIGHT)
        square.rotate(-3 * TAU / 8)
        circle.set_fill(PINK, opacity=0.5)

        self.play(ShowCreation(square))
        self.play(Transform(square, circle))
        self.play(FadeOut(square))

In order to view the output of this scene, save the code in a file called example.py. Then, run the following in a terminal window:

manim example.py SquareToCircle -p -ql

You should see your native video player program pop up and play a simple scene in which a square is transformed into a circle. You may find some more simple examples within this GitHub repository. You can also visit the official gallery for more advanced examples.

Manim also ships with a %%manim IPython magic which allows to use it conveniently in JupyterLab (as well as classic Jupyter) notebooks. See the corresponding documentation for some guidance and try it out online.

Command line arguments

The general usage of Manim is as follows:

manim-illustration

The -p flag in the command above is for previewing, meaning the video file will automatically open when it is done rendering. The -ql flag is for a faster rendering at a lower quality.

Some other useful flags include:

  • -s to skip to the end and just show the final frame.
  • -n <number> to skip ahead to the n'th animation of a scene.
  • -f show the file in the file browser.

For a thorough list of command line arguments, visit the documentation.

Documentation

Documentation is in progress at ReadTheDocs.

Help with Manim

If you need help installing or using Manim, feel free to reach out to our Discord Server or Reddit Community. If you would like to submit bug report or feature request, please open an issue.

Contributing

Contributions to Manim are always welcome. In particular, there is a dire need for tests and documentation. For contribution guidelines, please see the documentation.

Most developers on the project use Poetry for management. You'll want to have poetry installed and available in your environment. You can learn more poetry and how to use it at its documentation.

Code of Conduct

Our full code of conduct, and how we enforce it, can be read on our website.

License

The software is double-licensed under the MIT license, with copyright by 3blue1brown LLC (see LICENSE), and copyright by Manim Community Developers (see LICENSE.community).