mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
16 lines
381 B
Python
16 lines
381 B
Python
from active_projects.ode.part1.pendulum import *
|
|
from active_projects.ode.part1.staging import *
|
|
|
|
OUTPUT_DIRECTORY = "ode/part1"
|
|
ALL_SCENE_CLASSES = [
|
|
IntroducePendulum,
|
|
MultiplePendulumsOverlayed,
|
|
# FormulasAreLies,
|
|
MediumAnglePendulum,
|
|
MediumHighAnglePendulum,
|
|
HighAnglePendulum,
|
|
LowAnglePendulum,
|
|
# Tests
|
|
PendulumTest,
|
|
VectorFieldTest,
|
|
]
|