2019-06-19 16:24:44 -07:00
|
|
|
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 *
|
2019-06-20 13:26:43 -07:00
|
|
|
from active_projects.diffyq.part4.three_d_graphs import *
|
|
|
|
from active_projects.diffyq.part4.temperature_scenes import *
|
2019-06-19 16:10:21 -07:00
|
|
|
|
2019-06-20 13:26:43 -07:00
|
|
|
OUTPUT_DIRECTORY = "diffyq/part4"
|
2019-06-19 16:10:21 -07:00
|
|
|
SCENES_IN_ORDER = [
|
|
|
|
ComplexFourierSeriesExample,
|
|
|
|
ComplexFourierSeriesExampleEnd,
|
|
|
|
FourierSeriesExampleWithRectForZoom,
|
|
|
|
ZoomedInFourierSeriesExample,
|
2019-06-20 13:26:43 -07:00
|
|
|
ZoomedInFourierSeriesExample10xMore,
|
2019-06-19 16:10:21 -07:00
|
|
|
RelationToOtherVideos,
|
|
|
|
WhyWouldYouCare,
|
2019-06-20 13:26:43 -07:00
|
|
|
ShowLinearity,
|
|
|
|
CombineSeveralSolutions,
|
|
|
|
FourierGainsImmortality,
|
|
|
|
CycleThroughManyLinearCombinations,
|
|
|
|
StepFunctionExample,
|
|
|
|
WhichWavesAreAvailable,
|
2019-06-19 16:10:21 -07:00
|
|
|
# Oldies
|
|
|
|
|
|
|
|
# FourierSeriesIllustraiton,
|
|
|
|
# FourierNameIntro,
|
|
|
|
# CircleAnimationOfF,
|
|
|
|
]
|