2019-03-16 22:13:55 -07:00
|
|
|
from active_projects.ode.part1.pendulum import *
|
2019-03-17 04:04:40 -07:00
|
|
|
from active_projects.ode.part1.staging import *
|
2019-03-12 20:29:23 -07:00
|
|
|
|
|
|
|
OUTPUT_DIRECTORY = "ode/part1"
|
|
|
|
ALL_SCENE_CLASSES = [
|
2019-03-19 17:31:11 -07:00
|
|
|
IntroducePendulum,
|
2019-03-20 13:07:53 -07:00
|
|
|
MultiplePendulumsOverlayed,
|
|
|
|
# FormulasAreLies,
|
2019-03-19 22:29:36 -07:00
|
|
|
MediumAnglePendulum,
|
2019-03-20 13:07:53 -07:00
|
|
|
MediumHighAnglePendulum,
|
|
|
|
HighAnglePendulum,
|
2019-03-19 22:29:36 -07:00
|
|
|
LowAnglePendulum,
|
2019-03-19 17:31:11 -07:00
|
|
|
# Tests
|
2019-03-18 14:34:49 -07:00
|
|
|
PendulumTest,
|
|
|
|
VectorFieldTest,
|
2019-03-12 20:29:23 -07:00
|
|
|
]
|