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 = [
|
|
|
|
LastChapterWrapper,
|
2019-05-29 18:28:40 -07:00
|
|
|
ThreeConstraints,
|
|
|
|
OceanOfPossibilities,
|
2019-06-13 09:27:35 -07:00
|
|
|
# TODO
|
|
|
|
ThreeMainObservations,
|
|
|
|
BreakDownAFunction,
|
2019-06-03 11:33:39 -07:00
|
|
|
SineCurveIsUnrealistic,
|
2019-06-13 09:27:35 -07:00
|
|
|
AnalyzeSineCurve,
|
|
|
|
EquationAboveSineAnalysis,
|
|
|
|
ExponentialDecay,
|
|
|
|
InvestmentGrowth,
|
|
|
|
GrowingPileOfMoney,
|
|
|
|
CarbonDecayCurve,
|
|
|
|
CarbonDecayingInMammoth,
|
|
|
|
SineWaveScaledByExp,
|
|
|
|
ShowSinExpDerivatives,
|
|
|
|
IfOnly,
|
|
|
|
BoundaryConditionInterlude,
|
|
|
|
BoundaryConditionReference,
|
|
|
|
GiantCross,
|
|
|
|
SimulateRealSineCurve,
|
|
|
|
SimulateLinearGraph,
|
|
|
|
|
|
|
|
# SimpleCosExpGraph,
|
|
|
|
# AddMultipleSolutions,
|
|
|
|
# IveHeardOfThis,
|
|
|
|
# FourierSeriesOfLineIllustration,
|
|
|
|
# InFouriersShoes,
|
|
|
|
]
|
|
|
|
|
|
|
|
PART_4_SCENES = [
|
|
|
|
FourierSeriesIllustraiton,
|
|
|
|
FourierNameIntro,
|
|
|
|
CircleAnimationOfF,
|
2019-05-27 19:48:48 -07:00
|
|
|
]
|