mirror of
https://github.com/3b1b/manim.git
synced 2025-08-03 04:04:36 +08:00
Add comment to Mobject.animate
This commit is contained in:
@ -159,7 +159,13 @@ class Mobject(object):
|
||||
|
||||
@property
|
||||
def animate(self) -> _AnimationBuilder:
|
||||
# Borrowed from https://github.com/ManimCommunity/manim/
|
||||
"""
|
||||
Methods called with Mobject.animate.method() can be passed
|
||||
into a Scene.play call, as if you were calling
|
||||
ApplyMethod(mobject.method)
|
||||
|
||||
Borrowed from https://github.com/ManimCommunity/manim/
|
||||
"""
|
||||
return _AnimationBuilder(self)
|
||||
|
||||
@property
|
||||
|
Reference in New Issue
Block a user