Welcome to Manim!#

This is a temporary test environment in which you can play around with Manim without the need of installing it locally. Some basic knowledge of Python is helpful! Keep in mind that this is a temporary environment, though: your changes will not be saved and cannot be shared with others. To save your work, you will need to download the notebook file (“File > Download as > Notebook (.ipynb)”). Enjoy!

Useful resources: Documentation, Discord, Reddit

Setup#

We begin our short walkthrough by importing everything from the library. Run the following code cell to do so (focus the cell and hit the Run button above, or press Shift+Enter – you can find more information about how to navigate and work with Jupyter notebooks in the Help menu at the top of this page).

The second line controls the maximum width used to display videos in this notebook, and the third line controls the verbosity of the log output. Feel free to adapt both of these settings to your liking.

from manim import *

config.media_width = "75%"
config.media_embed = True
config.verbosity = "WARNING"

If you have executed the cell successfully, a message printing the installed version of the library should have appeared below it.

Your first Scene#

Manim generates videos by rendering Scenes. These are special classes that have a construct method describing the animations that should be rendered. (For the sake of this tutorial it doesn’t matter if you are not that familiar with Python or object-oriented programming terminology like class or method – but you should consider working through a Python tutorial if you want to keep learning Manim.)

Enough of fancy words, let us look at an example. Run the cell below to render and display a video.

%%manim -qm CircleToSquare

class CircleToSquare(Scene):
    def construct(self):
        blue_circle = Circle(color=BLUE, fill_opacity=0.5)
        green_square = Square(color=GREEN, fill_opacity=0.8)
        self.play(Create(blue_circle))
        self.wait()
        
        self.play(Transform(blue_circle, green_square))
        self.wait()
Manim Community v0.18.1

Animation 0: Create(Circle):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 0: Create(Circle):  37%|███▋      | 11/30 [00:00<00:00, 109.39it/s]
Animation 0: Create(Circle): 100%|██████████| 30/30 [00:00<00:00, 155.50it/s]
Animation 2: Transform(Circle):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 2: Transform(Circle):  43%|████▎     | 13/30 [00:00<00:00, 129.18it/s]

While parts of this example might seem self-explanatory, we’ll still go over it step by step. First,

%%manim -qm CircleToSquare

is a magic command, it only works within Jupyter notebooks. It is very similar to how you would call manim from a terminal: The flag -qm controls the render quality, it is shorthand for --quality=m, medium rendering quality. This means that the video will be rendered in 720p with 30 fps. (Try to change it to -qh or -ql for high and low quality, respectively!)

Finally, CircleToSquare is the name of the scene class you want to render in this particular cell, which already brings us to the next few lines:

class CircleToSquare(Scene):
    def construct(self):
        [...]

This defines a Manim scene named CircleToSquare, and defines a custom construct method which acts as the blueprint for the video. The content of the construct method describes what exactly is rendered in the video.

blue_circle = Circle(color=BLUE, fill_opacity=0.5)
green_square = Square(color=GREEN, fill_opacity=0.8)

The first two lines create a Circle and a Square object with the specified colors and fill opacities. However, these are not added to the scene yet! To do that, you either have to use self.add, or …

self.play(Create(blue_circle))
self.wait()

… by playing an animation that adds a Manim object (Mobject) to the scene. Within the method, self references the current scene, self.play(my_animation) can be read as “This scene should play my animation.

Create is such an animation, but there are many others (for example FadeIn, or DrawBorderThenFill – try them out above!). The self.wait() call does exactly what you would expect: it pauses the video for a while (by default: one second). Change it to self.wait(2) for a two-second pause, and so on.

The final two lines,

self.play(Transform(blue_circle, green_square))
self.wait()

are responsible for the actual transformation from the blue circle to the green square (plus a one second pause afterwards).

Positioning Mobjects and moving them around#

New problem: We want to create a scene in which a circle is created while simultaneously some text is written below it. We can reuse our blue circle from above, and then add some new code:

%%manim -qm HelloCircle

class HelloCircle(Scene):
    def construct(self):
        # blue_circle = Circle(color=BLUE, fill_opacity=0.5)
        # We can also create a "plain" circle and add the desired attributes via set methods:
        circle = Circle()
        blue_circle = circle.set_color(BLUE).set_opacity(0.5)
        
        label = Text("A wild circle appears!")
        label.next_to(blue_circle, DOWN, buff=0.5)
        
        self.play(Create(blue_circle), Write(label))
        self.wait()
Manim Community v0.18.1

Animation 0: Create(Circle), etc.:   0%|          | 0/60 [00:00<?, ?it/s]
Animation 0: Create(Circle), etc.:  18%|█▊        | 11/60 [00:00<00:00, 102.90it/s]
Animation 0: Create(Circle), etc.:  37%|███▋      | 22/60 [00:00<00:00, 106.21it/s]
Animation 0: Create(Circle), etc.:  55%|█████▌    | 33/60 [00:00<00:00, 107.71it/s]
Animation 0: Create(Circle), etc.:  73%|███████▎  | 44/60 [00:00<00:00, 106.50it/s]
Animation 0: Create(Circle), etc.:  92%|█████████▏| 55/60 [00:00<00:00, 92.81it/s]

Apparently, text can be rendered by using a Text Mobject – and the desired position is achieved by the line

label.next_to(blue_circle, DOWN, buff=0.5)

Mobjects have a few methods for positioning, next_to is one of them (shift, to_edge, to_corner, move_to are a few others – check them out in our documentation by using the search bar on the left!). For next_to, the first argument that is passed (blue_circle) describes next to which object our label should be placed. The second argument, DOWN, describes the direction (try changing it to LEFT, UP, or RIGHT instead!). And finally, buff=0.5 controls the “buffer distance” between blue_circle and label, increasing this value will push label further down.

But also note that the self.play call has been changed: it is possible to pass several animation arguments to self.play, they will then be played simultaneously. If you want to play them one after the other, replace the self.play call with the lines

self.play(Create(blue_circle))
self.play(Write(label))

and see what happens.

By the way, Mobjects naturally also have non-positioning related methods: for example, to get our blue circle, we could also create a default one, and then set color and opacity:

circle = Circle()
blue_transparent_circle = circle.set_color(BLUE)
blue_circle = blue_transparent_circle.set_opacity(0.5)

A shorter version of this would be

blue_circle = Circle().set_color(BLUE).set_opacity(0.5)

For now, we will stick with setting the attributes directly in the call to Circle.

Animating Method calls: the .animate syntax#

In the last example we have encountered the .next_to method, one of many (!) methods that modify Mobjects in one way or the other. But what if we wanted to animate how a Mobject changes when one of these methods is applied, say, when we .shift something around, or .rotate a Mobject, or maybe .scale it? The .animate syntax is the answer to this question, let us look at an example.

%%manim -qm CircleAnnouncement

class CircleAnnouncement(Scene):
    def construct(self):
        blue_circle = Circle(color=BLUE, fill_opacity=0.5)
        announcement = Text("Let us draw a circle.")
        
        self.play(Write(announcement))
        self.wait()
        
        self.play(announcement.animate.next_to(blue_circle, UP, buff=0.5))
        self.play(Create(blue_circle))
Manim Community v0.18.1

Animation 0: Write(Text('Let us draw a circle.')):   0%|          | 0/60 [00:00<?, ?it/s]
Animation 0: Write(Text('Let us draw a circle.')):  17%|█▋        | 10/60 [00:00<00:00, 93.51it/s]
Animation 0: Write(Text('Let us draw a circle.')):  35%|███▌      | 21/60 [00:00<00:00, 98.86it/s]
Animation 0: Write(Text('Let us draw a circle.')):  52%|█████▏    | 31/60 [00:00<00:00, 99.30it/s]
Animation 0: Write(Text('Let us draw a circle.')):  68%|██████▊   | 41/60 [00:00<00:00, 98.16it/s]
Animation 0: Write(Text('Let us draw a circle.')):  85%|████████▌ | 51/60 [00:00<00:00, 87.99it/s]
Animation 0: Write(Text('Let us draw a circle.')): 100%|██████████| 60/60 [00:00<00:00, 87.38it/s]
Animation 2: _MethodAnimation(Text('Let us draw a circle.')):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 2: _MethodAnimation(Text('Let us draw a circle.')):  37%|███▋      | 11/30 [00:00<00:00, 106.00it/s]
Animation 2: _MethodAnimation(Text('Let us draw a circle.')):  77%|███████▋  | 23/30 [00:00<00:00, 110.16it/s]
Animation 3: Create(Circle):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 3: Create(Circle):  33%|███▎      | 10/30 [00:00<00:00, 99.83it/s]
Animation 3: Create(Circle):  90%|█████████ | 27/30 [00:00<00:00, 137.15it/s]

Where we would normally use announcement.next_to(blue_circle, UP, buff=0.5) to position the text without animation, we can prepend .animate to the method call to turn the application of the method into an animation which can then be played using self.play. This works with all methods that modify a Mobject in some way:

%%manim -qm AnimateSyntax

class AnimateSyntax(Scene):
    def construct(self):
        triangle = Triangle(color=RED, fill_opacity=1)
        self.play(DrawBorderThenFill(triangle))
        self.play(triangle.animate.shift(LEFT))
        self.play(triangle.animate.shift(RIGHT).scale(2))
        self.play(triangle.animate.rotate(PI/3))
Manim Community v0.18.1

Animation 0: DrawBorderThenFill(Triangle):   0%|          | 0/60 [00:00<?, ?it/s]
Animation 0: DrawBorderThenFill(Triangle):  17%|█▋        | 10/60 [00:00<00:00, 98.11it/s]
Animation 0: DrawBorderThenFill(Triangle):  48%|████▊     | 29/60 [00:00<00:00, 150.28it/s]
Animation 0: DrawBorderThenFill(Triangle):  80%|████████  | 48/60 [00:00<00:00, 167.74it/s]
Animation 1: _MethodAnimation(Triangle):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 1: _MethodAnimation(Triangle):  37%|███▋      | 11/30 [00:00<00:00, 106.46it/s]
Animation 2: _MethodAnimation(Triangle):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 2: _MethodAnimation(Triangle):  37%|███▋      | 11/30 [00:00<00:00, 109.30it/s]
Animation 3: _MethodAnimation(Triangle):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 3: _MethodAnimation(Triangle):  37%|███▋      | 11/30 [00:00<00:00, 106.24it/s]

In the first play call the triangle is created, in the second it is shifted to the left, then in the third it is shifted back to the right and simultaneously scaled by a factor of 2, and finally in the fourth call it is rotated by an angle of \(\pi/3\). Run the cell above again after modifying some of the values, or trying other methods like, e.g., set_color).

When looking closely at the last animation from the scene above, the rotation, you might notice that this is not actually a rotation. The triangle is transformed to a rotated version of itself, but during the animation the vertices of the triangle don’t move along an arc (as they would when the triangle was rotated around its center), but rather along straight lines, which gives the animation the impression that the triangle first shrinks a bit and then grows again.

This is actually not a bug, but a consequence of how the .animate syntax works: the animation is constructed by specifying the starting state (the triangle Mobject in the example above), and the final state (the rotated mobject, triangle.rotate(PI/3)). Manim then tries to interpolate between these two, but doesn’t actually know that you would like to smoothly rotate the triangle. The following example illustrates this clearly:

%%manim -qm DifferentRotations

class DifferentRotations(Scene):
    def construct(self):
        left_square = Square(color=BLUE, fill_opacity=0.7).shift(2*LEFT)
        right_square = Square(color=GREEN, fill_opacity=0.7).shift(2*RIGHT)
        self.play(left_square.animate.rotate(PI), Rotate(right_square, angle=PI), run_time=2)
        self.wait()
Manim Community v0.18.1

Animation 0: _MethodAnimation(Square), etc.:   0%|          | 0/60 [00:00<?, ?it/s]
Animation 0: _MethodAnimation(Square), etc.:  18%|█▊        | 11/60 [00:00<00:00, 104.67it/s]
Animation 0: _MethodAnimation(Square), etc.:  48%|████▊     | 29/60 [00:00<00:00, 143.85it/s]
Animation 0: _MethodAnimation(Square), etc.:  78%|███████▊  | 47/60 [00:00<00:00, 158.23it/s]

Typesetting Mathematics#

Manim supports rendering and animating LaTeX, the markup language mathematics is very often typeset in. Learn more about it in this 30 minute tutorial.

Here is a simple example for working with LaTeX in Manim:

%%manim -qm CauchyIntegralFormula

class CauchyIntegralFormula(Scene):
    def construct(self):
        formula = MathTex(r"[z^n]f(z) = \frac{1}{2\pi i}\oint_{\gamma} \frac{f(z)}{z^{n+1}}~dz")
        self.play(Write(formula), run_time=3)
        self.wait()
Manim Community v0.18.1

Animation 0: Write(MathTex('[z^n]f(z) = \\frac{1}{2\\pi i}\\oint_{\\gamma} \\frac{f(z)}{z^{n+1}}~dz')):   0%|          | 0/90 [00:00<?, ?it/s]
Animation 0: Write(MathTex('[z^n]f(z) = \\frac{1}{2\\pi i}\\oint_{\\gamma} \\frac{f(z)}{z^{n+1}}~dz')):  11%|█         | 10/90 [00:00<00:00, 91.10it/s]
Animation 0: Write(MathTex('[z^n]f(z) = \\frac{1}{2\\pi i}\\oint_{\\gamma} \\frac{f(z)}{z^{n+1}}~dz')):  22%|██▏       | 20/90 [00:00<00:00, 92.45it/s]
Animation 0: Write(MathTex('[z^n]f(z) = \\frac{1}{2\\pi i}\\oint_{\\gamma} \\frac{f(z)}{z^{n+1}}~dz')):  33%|███▎      | 30/90 [00:00<00:00, 93.52it/s]
Animation 0: Write(MathTex('[z^n]f(z) = \\frac{1}{2\\pi i}\\oint_{\\gamma} \\frac{f(z)}{z^{n+1}}~dz')):  44%|████▍     | 40/90 [00:00<00:00, 93.84it/s]
Animation 0: Write(MathTex('[z^n]f(z) = \\frac{1}{2\\pi i}\\oint_{\\gamma} \\frac{f(z)}{z^{n+1}}~dz')):  56%|█████▌    | 50/90 [00:00<00:00, 84.97it/s]
Animation 0: Write(MathTex('[z^n]f(z) = \\frac{1}{2\\pi i}\\oint_{\\gamma} \\frac{f(z)}{z^{n+1}}~dz')):  66%|██████▌   | 59/90 [00:00<00:00, 83.47it/s]
Animation 0: Write(MathTex('[z^n]f(z) = \\frac{1}{2\\pi i}\\oint_{\\gamma} \\frac{f(z)}{z^{n+1}}~dz')):  76%|███████▌  | 68/90 [00:00<00:00, 82.81it/s]
Animation 0: Write(MathTex('[z^n]f(z) = \\frac{1}{2\\pi i}\\oint_{\\gamma} \\frac{f(z)}{z^{n+1}}~dz')):  86%|████████▌ | 77/90 [00:00<00:00, 84.67it/s]
Animation 0: Write(MathTex('[z^n]f(z) = \\frac{1}{2\\pi i}\\oint_{\\gamma} \\frac{f(z)}{z^{n+1}}~dz')):  96%|█████████▌| 86/90 [00:00<00:00, 85.11it/s]

As this example demonstrates, MathTex allows to render simple (math mode) LaTeX strings. If you want to render “normal mode” LaTeX, use Tex instead.

Of course, Manim can also help you to visualize transformations of typeset formulae. Consider the following example:

%%manim -qm TransformEquation

class TransformEquation(Scene):
    def construct(self):
        eq1 = MathTex("42 {{ a^2 }} + {{ b^2 }} = {{ c^2 }}")
        eq2 = MathTex("42 {{ a^2 }} = {{ c^2 }} - {{ b^2 }}")
        eq3 = MathTex(r"a^2 = \frac{c^2 - b^2}{42}")
        self.add(eq1)
        self.wait()
        self.play(TransformMatchingTex(eq1, eq2))
        self.wait()
        self.play(TransformMatchingShapes(eq2, eq3))
        self.wait()
Manim Community v0.18.1

Animation 1: TransformMatchingTex(Group):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 1: TransformMatchingTex(Group):  40%|████      | 12/30 [00:00<00:00, 115.13it/s]
Animation 1: TransformMatchingTex(Group):  97%|█████████▋| 29/30 [00:00<00:00, 143.90it/s]
Animation 3: TransformMatchingShapes(Group):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 3: TransformMatchingShapes(Group):  50%|█████     | 15/30 [00:00<00:00, 141.78it/s]

In this last example, eq1 and eq2 have some double braces positions where, conventionally, there wouldn’t be any in plain LaTeX. This is special Manim notation that groups the resulting Tex Mobjects eq1 and eq2 in a particular way.

This special notation is helpful when using the TransformMatchingTex animation: it will transform parts with equal TeX strings (for example, a^2 to a^2) into each other – and without the special notation, the equation is considered to be one long TeX string. In comparison, TransformMatchingShapes is less smart: it simply tries to transform shapes that “look the same” into each other – nonetheless, it is still often very useful.

If you have made it this far, you should have a first impression of basic usage of the library. You can find a few more advanced examples that illustrate some more specialized concepts in the library below. Go ahead, try to play around and modify them just like you did for the ones above! Explore our documentation to get an idea about things that are already implemented – and look at the source code in case you want to build some more complex objects yourself.

The community is certainly also happy to answer questions – and we hope you share your awesome projects with us! Happy manimating!

Some more specialized examples#

Before you delve right into these examples: please note that they illustrate specialized concepts, they are meant to give you a feeling for how more complex scenes are setup and coded. The examples don’t come with additional explanation, they are not intended as (entry level) learning resources.

%%manim -qm FormulaEmphasis

class FormulaEmphasis(Scene):
    def construct(self):
        product_formula = MathTex(
            r"\frac{d}{dx} f(x)g(x) =",
            r"f(x) \frac{d}{dx} g(x)",
            r"+",
            r"g(x) \frac{d}{dx} f(x)"
        )
        self.play(Write(product_formula))
        box1 = SurroundingRectangle(product_formula[1], buff=0.1)
        box2 = SurroundingRectangle(product_formula[3], buff=0.1)
        self.play(Create(box1))
        self.wait()
        self.play(Transform(box1, box2))
        self.wait()
Manim Community v0.18.1

Animation 0: Write(MathTex('\\frac{d}{dx} f(x)g(x) = f(x) \\frac{d}{dx} g(x) + g(x) \\frac{d}{dx} f(x)')):   0%|          | 0/60 [00:00<?, ?it/s]
Animation 0: Write(MathTex('\\frac{d}{dx} f(x)g(x) = f(x) \\frac{d}{dx} g(x) + g(x) \\frac{d}{dx} f(x)')):  13%|█▎        | 8/60 [00:00<00:00, 74.26it/s]
Animation 0: Write(MathTex('\\frac{d}{dx} f(x)g(x) = f(x) \\frac{d}{dx} g(x) + g(x) \\frac{d}{dx} f(x)')):  27%|██▋       | 16/60 [00:00<00:00, 73.67it/s]
Animation 0: Write(MathTex('\\frac{d}{dx} f(x)g(x) = f(x) \\frac{d}{dx} g(x) + g(x) \\frac{d}{dx} f(x)')):  40%|████      | 24/60 [00:00<00:00, 73.85it/s]
Animation 0: Write(MathTex('\\frac{d}{dx} f(x)g(x) = f(x) \\frac{d}{dx} g(x) + g(x) \\frac{d}{dx} f(x)')):  53%|█████▎    | 32/60 [00:00<00:00, 73.89it/s]
Animation 0: Write(MathTex('\\frac{d}{dx} f(x)g(x) = f(x) \\frac{d}{dx} g(x) + g(x) \\frac{d}{dx} f(x)')):  67%|██████▋   | 40/60 [00:00<00:00, 74.49it/s]
Animation 0: Write(MathTex('\\frac{d}{dx} f(x)g(x) = f(x) \\frac{d}{dx} g(x) + g(x) \\frac{d}{dx} f(x)')):  80%|████████  | 48/60 [00:00<00:00, 69.83it/s]
Animation 0: Write(MathTex('\\frac{d}{dx} f(x)g(x) = f(x) \\frac{d}{dx} g(x) + g(x) \\frac{d}{dx} f(x)')):  93%|█████████▎| 56/60 [00:00<00:00, 68.00it/s]
Animation 1: Create(SurroundingRectangle):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 1: Create(SurroundingRectangle):  57%|█████▋    | 17/30 [00:00<00:00, 168.95it/s]
Animation 3: Transform(SurroundingRectangle):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 3: Transform(SurroundingRectangle):  63%|██████▎   | 19/30 [00:00<00:00, 183.21it/s]
%%manim -qm PlotExample

class PlotExample(Scene):
    def construct(self):
        plot_axes = Axes(
            x_range=[0, 1, 0.05],
            y_range=[0, 1, 0.05],
            x_length=9,
            y_length=5.5,
            axis_config={
                "numbers_to_include": np.arange(0, 1 + 0.1, 0.1),
                "font_size": 24,
            },
            tips=False,
        )

        y_label = plot_axes.get_y_axis_label("y", edge=LEFT, direction=LEFT, buff=0.4)
        x_label = plot_axes.get_x_axis_label("x")
        plot_labels = VGroup(x_label, y_label)

        plots = VGroup()
        for n in np.arange(1, 20 + 0.5, 0.5):
            plots += plot_axes.plot(lambda x: x**n, color=WHITE)
            plots += plot_axes.plot(
                lambda x: x**(1 / n), color=WHITE, use_smoothing=False
            )

        extras = VGroup()
        extras += plot_axes.get_horizontal_line(plot_axes.c2p(1, 1, 0), color=BLUE)
        extras += plot_axes.get_vertical_line(plot_axes.c2p(1, 1, 0), color=BLUE)
        extras += Dot(point=plot_axes.c2p(1, 1, 0), color=YELLOW)
        title = Title(
            r"Graphs of $y=x^{\frac{1}{n}}$ and $y=x^n (n=1, 1.5, 2, 2.5, 3, \dots, 20)$",
            include_underline=False,
            font_size=40,
        )
        
        self.play(Write(title))
        self.play(Create(plot_axes), Create(plot_labels), Create(extras))
        self.play(AnimationGroup(*[Create(plot) for plot in plots], lag_ratio=0.05))
Manim Community v0.18.1

Animation 0: Write(Title('Graphs of $y=x^{\\frac{1}{n}}$ and $y=x^n (n=1, 1.5, 2, 2.5, 3, \\dots, 20)$')):   0%|          | 0/60 [00:00<?, ?it/s]
Animation 0: Write(Title('Graphs of $y=x^{\\frac{1}{n}}$ and $y=x^n (n=1, 1.5, 2, 2.5, 3, \\dots, 20)$')):  10%|█         | 6/60 [00:00<00:00, 59.39it/s]
Animation 0: Write(Title('Graphs of $y=x^{\\frac{1}{n}}$ and $y=x^n (n=1, 1.5, 2, 2.5, 3, \\dots, 20)$')):  20%|██        | 12/60 [00:00<00:00, 58.67it/s]
Animation 0: Write(Title('Graphs of $y=x^{\\frac{1}{n}}$ and $y=x^n (n=1, 1.5, 2, 2.5, 3, \\dots, 20)$')):  30%|███       | 18/60 [00:00<00:00, 58.13it/s]
Animation 0: Write(Title('Graphs of $y=x^{\\frac{1}{n}}$ and $y=x^n (n=1, 1.5, 2, 2.5, 3, \\dots, 20)$')):  40%|████      | 24/60 [00:00<00:00, 57.73it/s]
Animation 0: Write(Title('Graphs of $y=x^{\\frac{1}{n}}$ and $y=x^n (n=1, 1.5, 2, 2.5, 3, \\dots, 20)$')):  50%|█████     | 30/60 [00:00<00:00, 58.43it/s]
Animation 0: Write(Title('Graphs of $y=x^{\\frac{1}{n}}$ and $y=x^n (n=1, 1.5, 2, 2.5, 3, \\dots, 20)$')):  60%|██████    | 36/60 [00:00<00:00, 58.74it/s]
Animation 0: Write(Title('Graphs of $y=x^{\\frac{1}{n}}$ and $y=x^n (n=1, 1.5, 2, 2.5, 3, \\dots, 20)$')):  72%|███████▏  | 43/60 [00:00<00:00, 60.24it/s]
Animation 0: Write(Title('Graphs of $y=x^{\\frac{1}{n}}$ and $y=x^n (n=1, 1.5, 2, 2.5, 3, \\dots, 20)$')):  83%|████████▎ | 50/60 [00:00<00:00, 59.62it/s]
Animation 0: Write(Title('Graphs of $y=x^{\\frac{1}{n}}$ and $y=x^n (n=1, 1.5, 2, 2.5, 3, \\dots, 20)$')):  95%|█████████▌| 57/60 [00:00<00:00, 60.92it/s]
Animation 1: Create(Axes of 2 submobjects), etc.:   0%|          | 0/30 [00:00<?, ?it/s]
Animation 1: Create(Axes of 2 submobjects), etc.:  10%|█         | 3/30 [00:00<00:01, 25.38it/s]
Animation 1: Create(Axes of 2 submobjects), etc.:  20%|██        | 6/30 [00:00<00:00, 25.72it/s]
Animation 1: Create(Axes of 2 submobjects), etc.:  30%|███       | 9/30 [00:00<00:00, 26.46it/s]
Animation 1: Create(Axes of 2 submobjects), etc.:  40%|████      | 12/30 [00:00<00:00, 26.95it/s]
Animation 1: Create(Axes of 2 submobjects), etc.:  50%|█████     | 15/30 [00:00<00:00, 27.40it/s]
Animation 1: Create(Axes of 2 submobjects), etc.:  60%|██████    | 18/30 [00:00<00:00, 28.09it/s]
Animation 1: Create(Axes of 2 submobjects), etc.:  73%|███████▎  | 22/30 [00:00<00:00, 29.12it/s]
Animation 1: Create(Axes of 2 submobjects), etc.:  87%|████████▋ | 26/30 [00:00<00:00, 30.21it/s]
Animation 1: Create(Axes of 2 submobjects), etc.: 100%|██████████| 30/30 [00:01<00:00, 31.09it/s]
Animation 2: AnimationGroup(Group):   0%|          | 0/146 [00:00<?, ?it/s]
Animation 2: AnimationGroup(Group):   7%|▋         | 10/146 [00:00<00:01, 98.23it/s]
Animation 2: AnimationGroup(Group):  14%|█▎        | 20/146 [00:00<00:01, 78.67it/s]
Animation 2: AnimationGroup(Group):  20%|█▉        | 29/146 [00:00<00:02, 53.90it/s]
Animation 2: AnimationGroup(Group):  25%|██▍       | 36/146 [00:00<00:02, 41.32it/s]
Animation 2: AnimationGroup(Group):  28%|██▊       | 41/146 [00:00<00:03, 34.66it/s]
Animation 2: AnimationGroup(Group):  31%|███       | 45/146 [00:01<00:03, 29.66it/s]
Animation 2: AnimationGroup(Group):  34%|███▎      | 49/146 [00:01<00:03, 25.93it/s]
Animation 2: AnimationGroup(Group):  36%|███▌      | 52/146 [00:01<00:03, 23.51it/s]
Animation 2: AnimationGroup(Group):  38%|███▊      | 55/146 [00:01<00:04, 21.74it/s]
Animation 2: AnimationGroup(Group):  40%|███▉      | 58/146 [00:01<00:04, 19.91it/s]
Animation 2: AnimationGroup(Group):  42%|████▏     | 61/146 [00:02<00:04, 18.16it/s]
Animation 2: AnimationGroup(Group):  43%|████▎     | 63/146 [00:02<00:04, 17.11it/s]
Animation 2: AnimationGroup(Group):  45%|████▍     | 65/146 [00:02<00:04, 16.35it/s]
Animation 2: AnimationGroup(Group):  46%|████▌     | 67/146 [00:02<00:05, 15.56it/s]
Animation 2: AnimationGroup(Group):  47%|████▋     | 69/146 [00:02<00:05, 14.95it/s]
Animation 2: AnimationGroup(Group):  49%|████▊     | 71/146 [00:02<00:05, 14.30it/s]
Animation 2: AnimationGroup(Group):  50%|█████     | 73/146 [00:03<00:05, 13.69it/s]
Animation 2: AnimationGroup(Group):  51%|█████▏    | 75/146 [00:03<00:05, 13.10it/s]
Animation 2: AnimationGroup(Group):  53%|█████▎    | 77/146 [00:03<00:05, 12.40it/s]
Animation 2: AnimationGroup(Group):  54%|█████▍    | 79/146 [00:03<00:05, 12.15it/s]
Animation 2: AnimationGroup(Group):  55%|█████▌    | 81/146 [00:03<00:05, 11.82it/s]
Animation 2: AnimationGroup(Group):  57%|█████▋    | 83/146 [00:03<00:05, 11.58it/s]
Animation 2: AnimationGroup(Group):  58%|█████▊    | 85/146 [00:04<00:05, 11.22it/s]
Animation 2: AnimationGroup(Group):  60%|█████▉    | 87/146 [00:04<00:05, 10.93it/s]
Animation 2: AnimationGroup(Group):  61%|██████    | 89/146 [00:04<00:05, 10.74it/s]
Animation 2: AnimationGroup(Group):  62%|██████▏   | 91/146 [00:04<00:05, 10.60it/s]
Animation 2: AnimationGroup(Group):  64%|██████▎   | 93/146 [00:04<00:05, 10.31it/s]
Animation 2: AnimationGroup(Group):  65%|██████▌   | 95/146 [00:05<00:04, 10.22it/s]
Animation 2: AnimationGroup(Group):  66%|██████▋   | 97/146 [00:05<00:04, 10.08it/s]
Animation 2: AnimationGroup(Group):  68%|██████▊   | 99/146 [00:05<00:04,  9.80it/s]
Animation 2: AnimationGroup(Group):  68%|██████▊   | 100/146 [00:05<00:04,  9.77it/s]
Animation 2: AnimationGroup(Group):  69%|██████▉   | 101/146 [00:05<00:04,  9.56it/s]
Animation 2: AnimationGroup(Group):  70%|██████▉   | 102/146 [00:05<00:04,  9.38it/s]
Animation 2: AnimationGroup(Group):  71%|███████   | 103/146 [00:05<00:04,  9.35it/s]
Animation 2: AnimationGroup(Group):  71%|███████   | 104/146 [00:06<00:04,  9.16it/s]
Animation 2: AnimationGroup(Group):  72%|███████▏  | 105/146 [00:06<00:04,  8.99it/s]
Animation 2: AnimationGroup(Group):  73%|███████▎  | 106/146 [00:06<00:04,  8.81it/s]
Animation 2: AnimationGroup(Group):  73%|███████▎  | 107/146 [00:06<00:04,  8.68it/s]
Animation 2: AnimationGroup(Group):  74%|███████▍  | 108/146 [00:06<00:04,  8.72it/s]
Animation 2: AnimationGroup(Group):  75%|███████▍  | 109/146 [00:06<00:04,  8.73it/s]
Animation 2: AnimationGroup(Group):  75%|███████▌  | 110/146 [00:06<00:04,  8.73it/s]
Animation 2: AnimationGroup(Group):  76%|███████▌  | 111/146 [00:06<00:04,  8.61it/s]
Animation 2: AnimationGroup(Group):  77%|███████▋  | 112/146 [00:06<00:03,  8.59it/s]
Animation 2: AnimationGroup(Group):  77%|███████▋  | 113/146 [00:07<00:03,  8.53it/s]
Animation 2: AnimationGroup(Group):  78%|███████▊  | 114/146 [00:07<00:03,  8.40it/s]
Animation 2: AnimationGroup(Group):  79%|███████▉  | 115/146 [00:07<00:03,  8.40it/s]
Animation 2: AnimationGroup(Group):  79%|███████▉  | 116/146 [00:07<00:03,  8.25it/s]
Animation 2: AnimationGroup(Group):  80%|████████  | 117/146 [00:07<00:03,  8.18it/s]
Animation 2: AnimationGroup(Group):  81%|████████  | 118/146 [00:07<00:03,  8.19it/s]
Animation 2: AnimationGroup(Group):  82%|████████▏ | 119/146 [00:07<00:03,  8.16it/s]
Animation 2: AnimationGroup(Group):  82%|████████▏ | 120/146 [00:07<00:03,  8.07it/s]
Animation 2: AnimationGroup(Group):  83%|████████▎ | 121/146 [00:08<00:03,  8.04it/s]
Animation 2: AnimationGroup(Group):  84%|████████▎ | 122/146 [00:08<00:03,  7.90it/s]
Animation 2: AnimationGroup(Group):  84%|████████▍ | 123/146 [00:08<00:02,  7.81it/s]
Animation 2: AnimationGroup(Group):  85%|████████▍ | 124/146 [00:08<00:02,  7.81it/s]
Animation 2: AnimationGroup(Group):  86%|████████▌ | 125/146 [00:08<00:02,  7.82it/s]
Animation 2: AnimationGroup(Group):  86%|████████▋ | 126/146 [00:08<00:02,  7.71it/s]
Animation 2: AnimationGroup(Group):  87%|████████▋ | 127/146 [00:08<00:02,  7.69it/s]
Animation 2: AnimationGroup(Group):  88%|████████▊ | 128/146 [00:09<00:02,  7.60it/s]
Animation 2: AnimationGroup(Group):  88%|████████▊ | 129/146 [00:09<00:02,  7.66it/s]
Animation 2: AnimationGroup(Group):  89%|████████▉ | 130/146 [00:09<00:02,  7.61it/s]
Animation 2: AnimationGroup(Group):  90%|████████▉ | 131/146 [00:09<00:01,  7.51it/s]
Animation 2: AnimationGroup(Group):  90%|█████████ | 132/146 [00:09<00:01,  7.52it/s]
Animation 2: AnimationGroup(Group):  91%|█████████ | 133/146 [00:09<00:01,  7.54it/s]
Animation 2: AnimationGroup(Group):  92%|█████████▏| 134/146 [00:09<00:01,  7.56it/s]
Animation 2: AnimationGroup(Group):  92%|█████████▏| 135/146 [00:09<00:01,  7.59it/s]
Animation 2: AnimationGroup(Group):  93%|█████████▎| 136/146 [00:10<00:01,  7.60it/s]
Animation 2: AnimationGroup(Group):  94%|█████████▍| 137/146 [00:10<00:01,  7.60it/s]
Animation 2: AnimationGroup(Group):  95%|█████████▍| 138/146 [00:10<00:01,  7.63it/s]
Animation 2: AnimationGroup(Group):  95%|█████████▌| 139/146 [00:10<00:00,  7.45it/s]
Animation 2: AnimationGroup(Group):  96%|█████████▌| 140/146 [00:10<00:00,  7.54it/s]
Animation 2: AnimationGroup(Group):  97%|█████████▋| 141/146 [00:10<00:00,  7.57it/s]
Animation 2: AnimationGroup(Group):  97%|█████████▋| 142/146 [00:10<00:00,  7.61it/s]
Animation 2: AnimationGroup(Group):  98%|█████████▊| 143/146 [00:10<00:00,  7.65it/s]
Animation 2: AnimationGroup(Group):  99%|█████████▊| 144/146 [00:11<00:00,  7.63it/s]
Animation 2: AnimationGroup(Group):  99%|█████████▉| 145/146 [00:11<00:00,  7.68it/s]
Animation 2: AnimationGroup(Group): 100%|██████████| 146/146 [00:11<00:00,  7.76it/s]
%%manim -qm ErdosRenyiGraph

import networkx as nx

nxgraph = nx.erdos_renyi_graph(14, 0.5)

class ErdosRenyiGraph(Scene):
    def construct(self):
        G = Graph.from_networkx(nxgraph, layout="spring", layout_scale=3.5)
        self.play(Create(G))
        self.play(*[G[v].animate.move_to(5*RIGHT*np.cos(ind/7 * PI) +
                                         3*UP*np.sin(ind/7 * PI))
                    for ind, v in enumerate(G.vertices)])
        self.play(Uncreate(G))
Manim Community v0.18.1

Animation 0: Create(Undirected graph on 14 vertices and 48 edges):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 0: Create(Undirected graph on 14 vertices and 48 edges):  13%|█▎        | 4/30 [00:00<00:00, 34.81it/s]
Animation 0: Create(Undirected graph on 14 vertices and 48 edges):  27%|██▋       | 8/30 [00:00<00:00, 37.66it/s]
Animation 0: Create(Undirected graph on 14 vertices and 48 edges):  43%|████▎     | 13/30 [00:00<00:00, 39.15it/s]
Animation 0: Create(Undirected graph on 14 vertices and 48 edges):  60%|██████    | 18/30 [00:00<00:00, 40.16it/s]
Animation 0: Create(Undirected graph on 14 vertices and 48 edges):  77%|███████▋  | 23/30 [00:00<00:00, 40.93it/s]
Animation 0: Create(Undirected graph on 14 vertices and 48 edges):  93%|█████████▎| 28/30 [00:00<00:00, 42.03it/s]
Animation 1: _MethodAnimation(Dot), etc.:   0%|          | 0/30 [00:00<?, ?it/s]
Animation 1: _MethodAnimation(Dot), etc.:  13%|█▎        | 4/30 [00:00<00:00, 33.57it/s]
Animation 1: _MethodAnimation(Dot), etc.:  30%|███       | 9/30 [00:00<00:00, 38.41it/s]
Animation 1: _MethodAnimation(Dot), etc.:  47%|████▋     | 14/30 [00:00<00:00, 39.86it/s]
Animation 1: _MethodAnimation(Dot), etc.:  63%|██████▎   | 19/30 [00:00<00:00, 40.58it/s]
Animation 1: _MethodAnimation(Dot), etc.:  80%|████████  | 24/30 [00:00<00:00, 40.78it/s]
Animation 1: _MethodAnimation(Dot), etc.:  97%|█████████▋| 29/30 [00:00<00:00, 40.92it/s]
Animation 2: Uncreate(Undirected graph on 14 vertices and 48 edges):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 2: Uncreate(Undirected graph on 14 vertices and 48 edges):  13%|█▎        | 4/30 [00:00<00:00, 34.60it/s]
Animation 2: Uncreate(Undirected graph on 14 vertices and 48 edges):  30%|███       | 9/30 [00:00<00:00, 39.55it/s]
Animation 2: Uncreate(Undirected graph on 14 vertices and 48 edges):  47%|████▋     | 14/30 [00:00<00:00, 40.87it/s]
Animation 2: Uncreate(Undirected graph on 14 vertices and 48 edges):  63%|██████▎   | 19/30 [00:00<00:00, 41.19it/s]
Animation 2: Uncreate(Undirected graph on 14 vertices and 48 edges):  80%|████████  | 24/30 [00:00<00:00, 41.14it/s]
Animation 2: Uncreate(Undirected graph on 14 vertices and 48 edges):  97%|█████████▋| 29/30 [00:00<00:00, 40.09it/s]
%%manim -qm CodeFromString

class CodeFromString(Scene):
    def construct(self):
        code = '''from manim import Scene, Square

class FadeInSquare(Scene):
    def construct(self):
        s = Square()
        self.play(FadeIn(s))
        self.play(s.animate.scale(2))
        self.wait()
'''
        rendered_code = Code(code=code, tab_width=4, background="window",
                            language="Python", font="Monospace")
        self.play(Write(rendered_code))
        self.wait(2)
Manim Community v0.18.1

Animation 0: Write(Code of 3 submobjects):   0%|          | 0/60 [00:00<?, ?it/s]
Animation 0: Write(Code of 3 submobjects):   5%|▌         | 3/60 [00:00<00:02, 22.92it/s]
Animation 0: Write(Code of 3 submobjects):  10%|█         | 6/60 [00:00<00:02, 21.98it/s]
Animation 0: Write(Code of 3 submobjects):  15%|█▌        | 9/60 [00:00<00:02, 21.92it/s]
Animation 0: Write(Code of 3 submobjects):  20%|██        | 12/60 [00:00<00:02, 21.91it/s]
Animation 0: Write(Code of 3 submobjects):  25%|██▌       | 15/60 [00:00<00:02, 21.89it/s]
Animation 0: Write(Code of 3 submobjects):  30%|███       | 18/60 [00:00<00:01, 21.89it/s]
Animation 0: Write(Code of 3 submobjects):  35%|███▌      | 21/60 [00:00<00:01, 21.85it/s]
Animation 0: Write(Code of 3 submobjects):  40%|████      | 24/60 [00:01<00:01, 21.87it/s]
Animation 0: Write(Code of 3 submobjects):  45%|████▌     | 27/60 [00:01<00:01, 21.98it/s]
Animation 0: Write(Code of 3 submobjects):  50%|█████     | 30/60 [00:01<00:01, 22.09it/s]
Animation 0: Write(Code of 3 submobjects):  55%|█████▌    | 33/60 [00:01<00:01, 22.34it/s]
Animation 0: Write(Code of 3 submobjects):  60%|██████    | 36/60 [00:01<00:01, 22.59it/s]
Animation 0: Write(Code of 3 submobjects):  65%|██████▌   | 39/60 [00:01<00:00, 22.66it/s]
Animation 0: Write(Code of 3 submobjects):  70%|███████   | 42/60 [00:01<00:00, 22.88it/s]
Animation 0: Write(Code of 3 submobjects):  75%|███████▌  | 45/60 [00:02<00:00, 22.82it/s]
Animation 0: Write(Code of 3 submobjects):  80%|████████  | 48/60 [00:02<00:00, 22.32it/s]
Animation 0: Write(Code of 3 submobjects):  85%|████████▌ | 51/60 [00:02<00:00, 22.47it/s]
Animation 0: Write(Code of 3 submobjects):  90%|█████████ | 54/60 [00:02<00:00, 22.73it/s]
Animation 0: Write(Code of 3 submobjects):  95%|█████████▌| 57/60 [00:02<00:00, 23.48it/s]
Animation 0: Write(Code of 3 submobjects): 100%|██████████| 60/60 [00:02<00:00, 23.64it/s]
%%manim -qm OpeningManim

class OpeningManim(Scene):
    def construct(self):
        title = Tex(r"This is some \LaTeX")
        basel = MathTex(r"\sum_{n=1}^\infty \frac{1}{n^2} = \frac{\pi^2}{6}")
        VGroup(title, basel).arrange(DOWN)
        self.play(
            Write(title),
            FadeIn(basel, shift=UP),
        )
        self.wait()

        transform_title = Tex("That was a transform")
        transform_title.to_corner(UP + LEFT)
        self.play(
            Transform(title, transform_title),
            LaggedStart(*[FadeOut(obj, shift=DOWN) for obj in basel]),
        )
        self.wait()

        grid = NumberPlane(x_range=(-10, 10, 1), y_range=(-6.0, 6.0, 1))
        grid_title = Tex("This is a grid")
        grid_title.scale(1.5)
        grid_title.move_to(transform_title)

        self.add(grid, grid_title)
        self.play(
            FadeOut(title),
            FadeIn(grid_title, shift=DOWN),
            Create(grid, run_time=3, lag_ratio=0.1),
        )
        self.wait()

        grid_transform_title = Tex(
            r"That was a non-linear function \\ applied to the grid"
        )
        grid_transform_title.move_to(grid_title, UL)
        grid.prepare_for_nonlinear_transform()
        self.play(
            grid.animate.apply_function(
                lambda p: p + np.array([np.sin(p[1]), np.sin(p[0]), 0])
            ),
            run_time=3,
        )
        self.wait()
        self.play(Transform(grid_title, grid_transform_title))
        self.wait()
Manim Community v0.18.1

Animation 0: Write(Tex('This is some \\LaTeX')), etc.:   0%|          | 0/60 [00:00<?, ?it/s]
Animation 0: Write(Tex('This is some \\LaTeX')), etc.:  15%|█▌        | 9/60 [00:00<00:00, 89.22it/s]
Animation 0: Write(Tex('This is some \\LaTeX')), etc.:  32%|███▏      | 19/60 [00:00<00:00, 90.23it/s]
Animation 0: Write(Tex('This is some \\LaTeX')), etc.:  48%|████▊     | 29/60 [00:00<00:00, 91.91it/s]
Animation 0: Write(Tex('This is some \\LaTeX')), etc.:  65%|██████▌   | 39/60 [00:00<00:00, 91.92it/s]
Animation 0: Write(Tex('This is some \\LaTeX')), etc.:  82%|████████▏ | 49/60 [00:00<00:00, 86.08it/s]
Animation 0: Write(Tex('This is some \\LaTeX')), etc.:  97%|█████████▋| 58/60 [00:00<00:00, 81.17it/s]
Animation 2: Transform(Tex('This is some \\LaTeX')), etc.:   0%|          | 0/30 [00:00<?, ?it/s]
Animation 2: Transform(Tex('This is some \\LaTeX')), etc.:  30%|███       | 9/30 [00:00<00:00, 82.36it/s]
Animation 2: Transform(Tex('This is some \\LaTeX')), etc.:  60%|██████    | 18/30 [00:00<00:00, 83.85it/s]
Animation 2: Transform(Tex('This is some \\LaTeX')), etc.:  90%|█████████ | 27/30 [00:00<00:00, 84.70it/s]
Animation 4: FadeOut(Tex('This is some \\LaTeX')), etc.:   0%|          | 0/90 [00:00<?, ?it/s]
Animation 4: FadeOut(Tex('This is some \\LaTeX')), etc.:   8%|▊         | 7/90 [00:00<00:01, 64.24it/s]
Animation 4: FadeOut(Tex('This is some \\LaTeX')), etc.:  16%|█▌        | 14/90 [00:00<00:01, 65.30it/s]
Animation 4: FadeOut(Tex('This is some \\LaTeX')), etc.:  23%|██▎       | 21/90 [00:00<00:01, 65.23it/s]
Animation 4: FadeOut(Tex('This is some \\LaTeX')), etc.:  31%|███       | 28/90 [00:00<00:00, 65.59it/s]
Animation 4: FadeOut(Tex('This is some \\LaTeX')), etc.:  39%|███▉      | 35/90 [00:00<00:00, 66.58it/s]
Animation 4: FadeOut(Tex('This is some \\LaTeX')), etc.:  48%|████▊     | 43/90 [00:00<00:00, 67.05it/s]
Animation 4: FadeOut(Tex('This is some \\LaTeX')), etc.:  56%|█████▌    | 50/90 [00:00<00:00, 65.78it/s]
Animation 4: FadeOut(Tex('This is some \\LaTeX')), etc.:  63%|██████▎   | 57/90 [00:00<00:00, 65.34it/s]
Animation 4: FadeOut(Tex('This is some \\LaTeX')), etc.:  71%|███████   | 64/90 [00:00<00:00, 64.51it/s]
Animation 4: FadeOut(Tex('This is some \\LaTeX')), etc.:  79%|███████▉  | 71/90 [00:01<00:00, 64.20it/s]
Animation 4: FadeOut(Tex('This is some \\LaTeX')), etc.:  87%|████████▋ | 78/90 [00:01<00:00, 63.35it/s]
Animation 4: FadeOut(Tex('This is some \\LaTeX')), etc.:  96%|█████████▌| 86/90 [00:01<00:00, 65.63it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):   0%|          | 0/90 [00:00<?, ?it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):   4%|▍         | 4/90 [00:00<00:02, 38.82it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  10%|█         | 9/90 [00:00<00:01, 44.88it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  16%|█▌        | 14/90 [00:00<00:01, 46.98it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  21%|██        | 19/90 [00:00<00:01, 47.96it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  27%|██▋       | 24/90 [00:00<00:01, 48.16it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  32%|███▏      | 29/90 [00:00<00:01, 47.93it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  38%|███▊      | 34/90 [00:00<00:01, 47.59it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  43%|████▎     | 39/90 [00:00<00:01, 46.75it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  49%|████▉     | 44/90 [00:00<00:01, 45.80it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  54%|█████▍    | 49/90 [00:01<00:01, 37.74it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  60%|██████    | 54/90 [00:01<00:01, 34.57it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  64%|██████▍   | 58/90 [00:01<00:00, 34.41it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  69%|██████▉   | 62/90 [00:01<00:00, 34.08it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  73%|███████▎  | 66/90 [00:01<00:00, 33.05it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  78%|███████▊  | 70/90 [00:01<00:00, 32.56it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  82%|████████▏ | 74/90 [00:01<00:00, 32.28it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  87%|████████▋ | 78/90 [00:02<00:00, 32.32it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  91%|█████████ | 82/90 [00:02<00:00, 31.68it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects):  96%|█████████▌| 86/90 [00:02<00:00, 31.47it/s]
Animation 6: _MethodAnimation(NumberPlane of 4 submobjects): 100%|██████████| 90/90 [00:02<00:00, 31.17it/s]
Animation 8: Transform(Tex('This is a grid')):   0%|          | 0/30 [00:00<?, ?it/s]
Animation 8: Transform(Tex('This is a grid')):  20%|██        | 6/30 [00:00<00:00, 57.20it/s]
Animation 8: Transform(Tex('This is a grid')):  40%|████      | 12/30 [00:00<00:00, 57.86it/s]
Animation 8: Transform(Tex('This is a grid')):  60%|██████    | 18/30 [00:00<00:00, 58.75it/s]
Animation 8: Transform(Tex('This is a grid')):  80%|████████  | 24/30 [00:00<00:00, 58.18it/s]
Animation 8: Transform(Tex('This is a grid')): 100%|██████████| 30/30 [00:00<00:00, 58.29it/s]