mirror of
https://github.com/3b1b/manim.git
synced 2025-08-01 08:54:38 +08:00
20 lines
541 B
Python
20 lines
541 B
Python
from active_projects.ode.part2.staging import *
|
|
from active_projects.ode.part2.fourier_series import *
|
|
from active_projects.ode.part2.heat_equation import *
|
|
|
|
OUTPUT_DIRECTORY = "ode/part2"
|
|
ALL_SCENE_CLASSES = [
|
|
# Tests
|
|
FourierOfPiSymbol,
|
|
FourierOfPiSymbol5,
|
|
FourierOfTrebleClef,
|
|
# CirclesDrawingWave,
|
|
# Scenes for video
|
|
ExplainCircleAnimations,
|
|
FourierSeriesIntro,
|
|
FourierSeriesIntroBackground4,
|
|
FourierSeriesIntroBackground8,
|
|
FourierSeriesIntroBackground12,
|
|
FourierSeriesIntroBackground20,
|
|
]
|