mirror of
https://github.com/3b1b/manim.git
synced 2025-08-20 13:24:29 +00:00
47 lines
1.2 KiB
Python
47 lines
1.2 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 *
|
|
from active_projects.ode.part3.discrete_case 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,
|
|
DerivativesOfLinearFunction,
|
|
StraightLine3DGraph,
|
|
SimulateLinearGraph,
|
|
EmphasizeBoundaryPoints,
|
|
|
|
# SimpleCosExpGraph,
|
|
# AddMultipleSolutions,
|
|
# IveHeardOfThis,
|
|
# FourierSeriesOfLineIllustration,
|
|
# InFouriersShoes,
|
|
]
|
|
|
|
PART_4_SCENES = [
|
|
FourierSeriesIllustraiton,
|
|
FourierNameIntro,
|
|
CircleAnimationOfF,
|
|
]
|