mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
43 lines
1 KiB
Python
43 lines
1 KiB
Python
from active_projects.ode.part3.staging import *
|
|
from active_projects.ode.part3.temperature_graphs import *
|
|
from active_projects.ode.part3.pi_creature_scenes import *
|
|
from active_projects.ode.part3.wordy_scenes import *
|
|
|
|
|
|
OUTPUT_DIRECTORY = "ode/part3"
|
|
SCENES_IN_ORDER = [
|
|
LastChapterWrapper,
|
|
ThreeConstraints,
|
|
OceanOfPossibilities,
|
|
# TODO
|
|
ThreeMainObservations,
|
|
BreakDownAFunction,
|
|
SineCurveIsUnrealistic,
|
|
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,
|
|
]
|