Contributing a new script:
- Write a manim script and test it with the manim command line utility. You can install it from pypi (
pip install manimlib
) and create a video with it (manim myfile.py MyScene
). Make sure the output video looks correct. - Make sure it fullfills the following criteria:
- Easy to Read
- Minimal Example
- Not already in the library
- Choose a folder where you think the script fits in.
e.g. basics , or
animations. If you are creating a new category, make sure to add an empty
__init__.py
file - In the folder, click on "Propose new file" and paste your script
- Click on "Create new pull request"
- Make sure all tests were passed. As long as the build fails, your pull request won't be accepted
Thank you for contributing!