mirror of
https://github.com/3b1b/manim.git
synced 2025-07-28 20:43:56 +08:00
66 lines
1.8 KiB
Python
66 lines
1.8 KiB
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 *
|
|
from active_projects.diffyq.part4.complex_functions import *
|
|
from active_projects.diffyq.part4.long_fourier_scenes import *
|
|
|
|
from active_projects.diffyq.part3.staging import *
|
|
|
|
OUTPUT_DIRECTORY = "diffyq/part4"
|
|
SCENES_IN_ORDER = [
|
|
ComplexFourierSeriesExample,
|
|
FourierOfFourier,
|
|
FourierOfFourierZoomedIn,
|
|
FourierOfFourier100xZoom,
|
|
FourierSeriesFormula,
|
|
RelationToOtherVideos,
|
|
WhyWouldYouCare,
|
|
ShowLinearity,
|
|
CombineSeveralSolutions,
|
|
FourierGainsImmortality,
|
|
SolveForWavesNothingElse,
|
|
CycleThroughManyLinearCombinations,
|
|
StepFunctionExample,
|
|
WhichWavesAreAvailable,
|
|
AlternateBoundaryConditions,
|
|
AskQuestionOfGraph,
|
|
CommentOnFouriersImmortality,
|
|
HangOnThere,
|
|
ShowInfiniteSum,
|
|
TechnicalNuances,
|
|
BreakDownStepFunction,
|
|
StepFunctionSolutionFormla,
|
|
# How to compute
|
|
FourierSeriesOfLineIllustration,
|
|
GeneralizeToComplexFunctions,
|
|
ClarifyInputAndOutput,
|
|
GraphForFlattenedPi,
|
|
PiFourierSeries,
|
|
RealValuedFunctionFourierSeries,
|
|
YouSaidThisWasEasier,
|
|
AskAboutComplexNotVector,
|
|
SimpleComplexExponentExample,
|
|
LooseWithLanguage,
|
|
DemonstrateAddingArrows,
|
|
TRangingFrom0To1,
|
|
LabelRotatingVectors,
|
|
IntegralTrick,
|
|
SwapIntegralAndSum,
|
|
FootnoteOnSwappingIntegralAndSum,
|
|
FormulaOutOfContext,
|
|
ShowRangeOfCnFormulas,
|
|
DescribeSVG,
|
|
# TODO
|
|
IncreaseOrderOfApproximation,
|
|
ShowStepFunctionIn2dView,
|
|
StepFunctionIntegral,
|
|
GeneralChallenge,
|
|
|
|
# Oldies
|
|
# FourierSeriesIllustraiton,
|
|
# FourierNameIntro,
|
|
# CircleAnimationOfF,
|
|
]
|