2019-05-26 00:35:45 -07:00
|
|
|
Making a Scene
|
|
|
|
==============
|
|
|
|
|
2019-07-08 01:13:49 -04:00
|
|
|
To make a scene, jump on the table and do a dance. Oh, a manim scene? Alright.
|
|
|
|
|
|
|
|
A scene is what renders when manim is executed. Each scene contains mobjects, which can then be animated as
|
2019-07-08 01:18:10 -04:00
|
|
|
previously explained. In code, a scene is a class that extends ``Scene`` and implements the ``construct``
|
2019-07-08 01:23:04 -04:00
|
|
|
function, like so. Manim will execute this function to render the scene.
|
2019-07-08 01:13:49 -04:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
:linenos:
|
|
|
|
|
|
|
|
from manimlib.imports import *
|
|
|
|
|
|
|
|
class ExampleScene(Scene):
|
|
|
|
def construct(self):
|
|
|
|
# Add and animate mobjects here
|