mirror of
https://github.com/3b1b/manim.git
synced 2025-09-19 04:41:56 +00:00
Add comment to Mobject.animate
This commit is contained in:
parent
a6b46c641b
commit
3c778ba678
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue