Skip to main content

Animation engine for explanatory math videos.

Project description



MIT License Reddit Discord Documentation Status Docker image 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. 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 manimce

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.

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.

This project uses Poetry for management. You must have poetry installed and available in your environment. You can learn more poetry and how to use it at its Documentation.

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).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

manimce-0.1.1.tar.gz (209.1 kB view details)

Uploaded Source

Built Distribution

manimce-0.1.1-py3-none-any.whl (247.4 kB view details)

Uploaded Python 3

File details

Details for the file manimce-0.1.1.tar.gz.

File metadata

  • Download URL: manimce-0.1.1.tar.gz
  • Upload date:
  • Size: 209.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.2 CPython/3.8.6 Linux/5.9.9-arch1-1

File hashes

Hashes for manimce-0.1.1.tar.gz
Algorithm Hash digest
SHA256 9660f1bf2a9696e6b4c5313ffb4b223f66468df5ab554bc605ff42ce1076b9b2
MD5 21aedb1276938ba0c59ce30137806c03
BLAKE2b-256 7b6db0ee3c4e284b1b2f2f447f8fe60756f2379da6f8bafd7312bd65c45f5914

See more details on using hashes here.

File details

Details for the file manimce-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: manimce-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 247.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.2 CPython/3.8.6 Linux/5.9.9-arch1-1

File hashes

Hashes for manimce-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 648d2b50adda6829fecd85218e735e774d9e8958e04716bdfcd0646f997ae769
MD5 76f98ddcb86f9a1bede7167fdb91e1a8
BLAKE2b-256 c749fb26289b1c210c06992d24c45e5b84aba8f2a52f77fe49fbfd3d822b7605

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page