mirror of
https://github.com/3b1b/manim.git
synced 2025-07-28 20:43:56 +08:00
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
from active_projects.diffyq.part2.staging import *
|
|
from active_projects.diffyq.part2.fourier_series import *
|
|
from active_projects.diffyq.part2.heat_equation import *
|
|
from active_projects.diffyq.part2.pi_scenes import *
|
|
from active_projects.diffyq.part2.wordy_scenes import *
|
|
|
|
OUTPUT_DIRECTORY = "diffyq/part2"
|
|
SCENES_IN_ORDER = [
|
|
PartTwoOfTour,
|
|
HeatEquationIntroTitle,
|
|
BrownianMotion,
|
|
BlackScholes,
|
|
ContrastChapters1And2,
|
|
FourierSeriesIntro,
|
|
FourierSeriesIntroBackground20,
|
|
ExplainCircleAnimations,
|
|
# FourierSeriesIntroBackground4,
|
|
# FourierSeriesIntroBackground8,
|
|
# FourierSeriesIntroBackground12,
|
|
TwoDBodyWithManyTemperatures,
|
|
TwoDBodyWithManyTemperaturesGraph,
|
|
TwoDBodyWithManyTemperaturesContour,
|
|
BringTwoRodsTogether,
|
|
ShowEvolvingTempGraphWithArrows,
|
|
# TodaysTargetWrapper,
|
|
WriteHeatEquation,
|
|
ReactionsToInitialHeatEquation,
|
|
TalkThrough1DHeatGraph,
|
|
ShowCubeFormation,
|
|
CompareInputsOfGeneralCaseTo1D,
|
|
ContrastXChangesToTChanges,
|
|
ShowPartialDerivativeSymbols,
|
|
WriteHeatEquation,
|
|
ShowCurvatureToRateOfChangeIntuition,
|
|
ContrastPDEToODE,
|
|
TransitionToTempVsTime,
|
|
Show1DAnd3DEquations,
|
|
#
|
|
AskAboutWhereEquationComesFrom,
|
|
DiscreteSetup,
|
|
]
|