ShowCreation
(mobject, lag_ratio=1.0, **kwargs)[source]¶Bases: manim.animation.creation.ShowPartial
Incrementally show a VMobject.
mobject (VMobject
) – The VMobject to animate.
lag_ratio (float) –
TypeError – If mobject
is not an instance of VMobject
.
None
Examples
class ShowCreationScene(Scene):
def construct(self):
self.play(ShowCreation(Square()))
See also
Methods