mirror of
https://github.com/3b1b/manim.git
synced 2025-08-02 02:35:22 +08:00
46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
from active_projects.ode.part1.pendulum import *
|
|
from active_projects.ode.part1.staging import *
|
|
from active_projects.ode.part1.pi_scenes import *
|
|
from active_projects.ode.part1.phase_space import *
|
|
from active_projects.ode.part1.wordy_scenes import *
|
|
|
|
OUTPUT_DIRECTORY = "ode/part1"
|
|
ALL_SCENE_CLASSES = [
|
|
IntroducePendulum,
|
|
MultiplePendulumsOverlayed,
|
|
FormulasAreLies,
|
|
MediumAnglePendulum,
|
|
MediumHighAnglePendulum,
|
|
HighAnglePendulum,
|
|
LowAnglePendulum,
|
|
SomeOfYouWatching,
|
|
SmallAngleApproximationTex,
|
|
VeryLowAnglePendulum,
|
|
FormulasAreLies,
|
|
FollowThisThread,
|
|
StrogatzQuote,
|
|
# Something...
|
|
ShowGravityAcceleration,
|
|
AnalyzePendulumForce,
|
|
BuildUpEquation,
|
|
ShowDerivativeVideo,
|
|
SubtleAirCurrents,
|
|
DefineODE,
|
|
ODEvsPDEinFrames,
|
|
ProveTeacherWrong,
|
|
SetAsideSeekingSolution,
|
|
ReferencePiCollisionStateSpaces,
|
|
VisualizeStates,
|
|
IntroduceVectorField,
|
|
BreakingSecondOrderIntoTwoFirstOrder,
|
|
ShowPendulumPhaseFlow,
|
|
ShowHighVelocityCase,
|
|
TweakMuInFormula,
|
|
TweakMuInVectorField,
|
|
FromODEToVectorField,
|
|
LorenzVectorField,
|
|
ThreeBodiesInSpace,
|
|
ThreeBodySymbols,
|
|
AskAboutActuallySolving,
|
|
]
|