3b1b-manim/docs/source/getting_started/quickstart/index.rst

12 lines
279 B
ReStructuredText
Raw Normal View History

2021-01-24 09:49:29 +08:00
Quick Start
===========
2021-01-24 23:22:11 +08:00
.. manim-example:: WarpSquare
:media: ../../_static/example_scenes/WarpSquare.mp4
class WarpSquare(Scene):
def construct(self):
square = Square()
self.play(square.apply_complex_function, np.exp)
self.wait()