mirror of
https://github.com/3b1b/manim.git
synced 2025-08-01 06:22:54 +08:00
23 lines
551 B
Python
23 lines
551 B
Python
from active_projects.ode.part1.pendulum import *
|
|
from active_projects.ode.part1.staging import *
|
|
from active_projects.ode.part1.pi_scenes import *
|
|
|
|
OUTPUT_DIRECTORY = "ode/part1"
|
|
ALL_SCENE_CLASSES = [
|
|
IntroducePendulum,
|
|
MultiplePendulumsOverlayed,
|
|
FormulasAreLies,
|
|
MediumAnglePendulum,
|
|
MediumHighAnglePendulum,
|
|
HighAnglePendulum,
|
|
LowAnglePendulum,
|
|
SomeOfYouWatching,
|
|
SmallAngleApproximationTex,
|
|
VeryLowAnglePendulum,
|
|
FollowThisThread,
|
|
StrogatzQuote,
|
|
# Tests
|
|
PendulumTest,
|
|
VectorFieldTest,
|
|
]
|