mirror of
https://github.com/3b1b/manim.git
synced 2025-07-30 13:34:19 +08:00
34 lines
1010 B
Python
34 lines
1010 B
Python
from active_projects.diffyq.part4.staging import *
|
|
from active_projects.diffyq.part4.fourier_series_scenes import *
|
|
from active_projects.diffyq.part4.pi_creature_scenes import *
|
|
from active_projects.diffyq.part4.three_d_graphs import *
|
|
from active_projects.diffyq.part4.temperature_scenes import *
|
|
|
|
OUTPUT_DIRECTORY = "diffyq/part4"
|
|
SCENES_IN_ORDER = [
|
|
ComplexFourierSeriesExample,
|
|
ComplexFourierSeriesExampleEnd,
|
|
FourierSeriesExampleWithRectForZoom,
|
|
ZoomedInFourierSeriesExample,
|
|
ZoomedInFourierSeriesExample10xMore,
|
|
FourierSeriesFormula,
|
|
RelationToOtherVideos,
|
|
WhyWouldYouCare,
|
|
ShowLinearity,
|
|
CombineSeveralSolutions,
|
|
FourierGainsImmortality,
|
|
CycleThroughManyLinearCombinations,
|
|
StepFunctionExample,
|
|
WhichWavesAreAvailable,
|
|
AlternateBoundaryConditions,
|
|
AskQuestionOfGraph,
|
|
CommentOnFouriersImmortality,
|
|
HangOnThere,
|
|
ShowInfiniteSum,
|
|
# Oldies
|
|
|
|
# FourierSeriesIllustraiton,
|
|
# FourierNameIntro,
|
|
# CircleAnimationOfF,
|
|
]
|