Create

Qualified name: manim.animation.creation.Create

class Create(mobject=None, *args, use_override=True, **kwargs)[source]

Bases: ShowPartial

Incrementally show a VMobject.

Parameters:
  • mobject (VMobject | OpenGLVMobject | OpenGLSurface) – The VMobject to animate.

  • lag_ratio (float)

  • introducer (bool)

Raises:

TypeError – If mobject is not an instance of VMobject.

Examples

Example: CreateScene

from manim import *

class CreateScene(Scene):
    def construct(self):
        self.play(Create(Square()))
class CreateScene(Scene):
    def construct(self):
        self.play(Create(Square()))

See also

ShowPassingFlash

Methods

Attributes

run_time

_original__init__(mobject, lag_ratio=1.0, introducer=True, **kwargs)

Initialize self. See help(type(self)) for accurate signature.

Parameters:
  • mobject (VMobject | OpenGLVMobject | OpenGLSurface)

  • lag_ratio (float)

  • introducer (bool)

Return type:

None