2019-04-02 17:43:58 -07:00
|
|
|
from active_projects.ode.part2.staging import *
|
|
|
|
from active_projects.ode.part2.fourier_series import *
|
2019-04-03 20:40:22 -07:00
|
|
|
from active_projects.ode.part2.heat_equation import *
|
2019-04-02 17:43:58 -07:00
|
|
|
|
|
|
|
OUTPUT_DIRECTORY = "ode/part2"
|
|
|
|
ALL_SCENE_CLASSES = [
|
2019-04-03 20:40:22 -07:00
|
|
|
# Tests
|
|
|
|
FourierOfPiSymbol,
|
|
|
|
FourierOfPiSymbol5,
|
|
|
|
FourierOfTrebleClef,
|
|
|
|
# CirclesDrawingWave,
|
|
|
|
# Scenes for video
|
|
|
|
ExplainCircleAnimations,
|
|
|
|
FourierSeriesIntro,
|
|
|
|
FourierSeriesIntroBackground4,
|
|
|
|
FourierSeriesIntroBackground8,
|
|
|
|
FourierSeriesIntroBackground12,
|
|
|
|
FourierSeriesIntroBackground20,
|
2019-04-02 17:43:58 -07:00
|
|
|
]
|