2019-05-27 19:48:48 -07:00
|
|
|
from active_projects.ode.part3.staging import *
|
|
|
|
from active_projects.ode.part3.temperature_graphs import *
|
2019-05-28 13:38:45 -07:00
|
|
|
from active_projects.ode.part3.pi_creature_scenes import *
|
2019-05-29 18:28:40 -07:00
|
|
|
from active_projects.ode.part3.wordy_scenes import *
|
2019-05-27 19:48:48 -07:00
|
|
|
|
|
|
|
|
|
|
|
OUTPUT_DIRECTORY = "ode/part3"
|
|
|
|
SCENES_IN_ORDER = [
|
|
|
|
FourierSeriesIllustraiton,
|
|
|
|
FourierNameIntro,
|
|
|
|
CircleAnimationOfF,
|
|
|
|
LastChapterWrapper,
|
|
|
|
ThreeMainObservations,
|
2019-05-28 13:38:45 -07:00
|
|
|
SimpleCosExpGraph,
|
|
|
|
AddMultipleSolutions,
|
2019-05-29 18:28:40 -07:00
|
|
|
IveHeardOfThis,
|
|
|
|
FourierSeriesOfLineIllustration,
|
|
|
|
BreakDownAFunction,
|
|
|
|
ThreeConstraints,
|
|
|
|
OceanOfPossibilities,
|
|
|
|
InFouriersShoes,
|
|
|
|
AnalyzeSineCurve,
|
2019-06-03 11:33:39 -07:00
|
|
|
SineCurveIsUnrealistic,
|
2019-05-27 19:48:48 -07:00
|
|
|
]
|