mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
11 lines
No EOL
281 B
ReStructuredText
11 lines
No EOL
281 B
ReStructuredText
Example Scenes
|
|
==============
|
|
|
|
.. 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() |