This document explains the building blocks of manim and will give you all the necessary tools to start producing your own videos.
Essentially, manim puts at your disposal three different concepts that you can
orchestrate together in order to produce mathematical animations: the
mathematical object (or mobject for short) the animation, and the
scene. As we will see in the following sections, each of these three
concepts is implemented in manim as a separate class: the Mobject
,
Animation
, and Scene
classes.
Note
It is recommended that you read the tutorials Quickstart and A deeper look before reading this page.
Mobjects are the basic building block for all manim animations. Each class
that derives from Mobject
represents an object that can be displayed
on screen. For example, simple shapes such as Circle
,
Arrow
, and Rectangle
are all mobjects. More complicated
constructs such as Axes
, FunctionGraph
, or
BarChart
are mobjects as well.
If you try to display on screen an instance of Mobject
, you will only
see an empty frame. The reason is that the Mobject
class is an
abstract base class of all other mobjects, i.e. it does not have any
pre-determined visual shape that can be displayed on screen. It is only the
skeleton of a thing that could be displayed. Therefore, you will rarely need
to use plain instances of Mobject
; instead you will most likely
create instances of its derived classes. One of these derived classes is
VMobject
. The V
stands for Vectorized Mobject. In essence, a
vmobject is a mobject that uses vector vector graphics to be displayed. Most of
the time, you will be dealing with vmobjects, though we will continue to use
the term “mobject” to refer to the class of shapes that can be displayed on
screen, as it is more general.
Note
Any object that can be displayed on screen is a mobject
, even if
it is not necessarily mathematical in nature.
Tip
To see examples of classes derived from Mobject
, see the
geometry
module. Most of these are in fact derived from
VMobject
as well.
As explained in Quickstart, usually all of the code in a manim
script is put inside the construct()
method of a Scene
class.
To display a mobject on the screen, call the add()
method of the
containing Scene
. This is the principal way of displaying a mobject
on the screen when it is not being animated. To remove a mobject from the
screen, simply call the remove()
method from the containing
Scene
.
class CreatingMobjects(Scene):
def construct(self):
circle = Circle()
self.add(circle)
self.wait(1)
self.remove(circle)
self.wait(1)
Let’s define a new Scene
called Shapes
and add()
some mobjects to it. This script generates a static picture that displays a
circle, a square, and a triangle:
class Shapes(Scene):
def construct(self):
circle = Circle()
square = Square()
triangle = Triangle()
circle.shift(LEFT)
square.shift(UP)
triangle.shift(RIGHT)
self.add(circle, square, triangle)
self.wait(1)
By default, mobjects are placed at the center of coordinates, or origin, when
they are first created. They are also given some default colors. Further, the
Shapes
scene places the mobjects by using the shift()
method. The
square is shifted one unit in the UP
direction from the origin, while the
circle and triangle are shifted one unit LEFT
and RIGHT
, respectively.
Attention
Unlike other graphics software, manim places the center of
coordinates at the center of the screen. The positive vertical
direction is up, and the positive horizontal direction is right.
See also the constants ORIGIN
, UP
, DOWN
, LEFT
,
RIGHT
, and others, defined in the constants
module.
There are many other possible ways to place mobjects on the screen, for example
move_to()
, next_to()
, and align_to()
. The next scene
MobjectPlacement
uses all three.
class MobjectPlacement(Scene):
def construct(self):
circle = Circle()
square = Square()
triangle = Triangle()
# place the circle two units left from the origin
circle.move_to(LEFT * 2)
# place the square to the left of the circle
square.next_to(circle, LEFT)
# align the left border of the triangle to the left border of the circle
triangle.align_to(circle, LEFT)
self.add(circle, square, triangle)
self.wait(1)
The move_to()
method uses absolute units (measured relative to the
ORIGIN
), while next_to()
uses relative units (measured from the
mobject passed as the first argument). align_to()
uses LEFT
not as
measuring units but as a way to determine the border to use for alignment. The
coordinates of the borders of a mobject are determined using an imaginary
bounding box around it.
Tip
Many methods in manim can be chained together. For example the two lines
square = Square()
square.shift(LEFT)
can be replaced by
square = Square().shift(LEFT)
Technically, this is possible because most methods calls return the modified mobject.
The following scene changes the default aesthetics of the mobjects.
class MobjectStyling(Scene):
def construct(self):
circle = Circle().shift(LEFT)
square = Square().shift(UP)
triangle = Triangle().shift(RIGHT)
circle.set_stroke(color=GREEN, width=20)
square.set_fill(YELLOW, opacity=1.0)
triangle.set_fill(PINK, opacity=0.5)
self.add(circle, square, triangle)
self.wait(1)
This scene uses two of the main functions that change the visual style of a
mobject: set_stroke()
and set_fill()
. The former changes the
visual style of the mobject’s border while the latter changes the style of the
interior. By default, most mobjects have a fully transparent interior so you
must specify the opacity
parameter in order to display the color. An
opacity of 1.0
means fully opaque, while 0.0
means fully transparent.
Only instances of VMobject
implement set_stroke()
and
set_fill()
. Instances of Mobject
implement
set_color()
instead. The vast majority of pre-defined classes
are derived from VMobject
so it is usually safe to assume that you
have access to set_stroke()
and set_fill()
.
The next scene is exactly the same as the MobjectStyling
scene from the
previous section, except for exactly one line.
class MobjectZOrder(Scene):
def construct(self):
circle = Circle().shift(LEFT)
square = Square().shift(UP)
triangle = Triangle().shift(RIGHT)
circle.set_stroke(color=GREEN, width=20)
square.set_fill(YELLOW, opacity=1.0)
triangle.set_fill(PINK, opacity=0.5)
self.add(triangle, square, circle)
self.wait(1)
The only difference here (besides the scene name) is the order in which the
mobjects are added to the scene. In MobjectStyling
, we added them as
add(circle, square, triangle)
, whereas in MobjectZOrder
we add them as
add(triangle, square, circle)
.
As you can see, the order of the arguments of add()
determines
the order that the mobjects are displayed on screen, with the left-most
arguments being put in the back.
At the heart of manim is animation. Generally, you can add an animation to
your scene by calling the play()
method.
class SomeAnimations(Scene):
def construct(self):
square = Square()
self.add(square)
# some animations display mobjects, ...
self.play(FadeIn(square))
# ... some move or rotate mobjects around...
self.play(Rotate(square, PI/4))
# some animations remove mobjects from the screen
self.play(FadeOut(square))
self.wait(1)
Put simply, animations are procedures that interpolate between two mobjects.
For example, FadeIn(square)
starts with a fully transparent version of
square
and ends with a fully opaque version, interpolating between them
by gradually increasing the opacity. FadeOut
works in the opposite
way: it interpolates from fully opaque to fully transparent. As another
example, Rotate
starts with the mobject passed to it as argument, and
ends with the same object but rotated by a certain amount, this time
interpolating the mobject’s angle instead of its opacity.
Any property of a mobject that can be changed can be animated. In fact, any
method that changes a mobject’s property can be used as an animation, through
the use of ApplyMethod
.
class ApplyMethodExample(Scene):
def construct(self):
square = Square().set_fill(RED, opacity=1.0)
self.add(square)
# animate the change of color
self.play(ApplyMethod(square.set_fill, WHITE))
self.wait(1)
# animate the change of position
self.play(ApplyMethod(square.shift, UP))
self.wait(1)
ApplyMethod()
receives one mandatory argument which is the method of the
mobject to animate (e.g. square.set_fill
or square.shift
), and
any number of optional arguments which are then passed to the method call. For
example, ApplyMethod(square.shift, UP)
executes
square.shift(UP)
, but animates it instead of applying it immediately.
The Scene
class is the connective tissue of manim. Every mobject has
to be added
to a scene to be displayed, or removed
from it to cease being displayed. Every animation has to be
played
by a scene, and every time interval where no
animation occurs is determined by a call to wait()
. All of the
code of your video must be contained in the construct()
method of
a class that derives from Scene
. Finally, a single file may contain
multiple Scene
subclasses in the event that multiple scenes are to be
rendered at the same time.