2019-02-03 12:16:57 -08:00
|
|
|
from old_projects.clacks import question
|
|
|
|
from old_projects.clacks.solution2 import block_collision_scenes
|
|
|
|
from old_projects.clacks.solution2 import mirror_scenes
|
|
|
|
from old_projects.clacks.solution2 import pi_creature_scenes
|
|
|
|
from old_projects.clacks.solution2 import position_phase_space
|
|
|
|
from old_projects.clacks.solution2 import simple_scenes
|
|
|
|
from old_projects.clacks.solution2 import wordy_scenes
|
2019-01-28 10:25:15 -08:00
|
|
|
|
2019-02-04 10:32:24 -08:00
|
|
|
OUTPUT_DIRECTORY = "clacks/solution2"
|
2019-04-21 08:14:13 -07:00
|
|
|
SCENES_IN_ORDER = [
|
2019-02-03 12:14:22 -08:00
|
|
|
question.NameIntro,
|
2019-01-28 10:25:15 -08:00
|
|
|
block_collision_scenes.IntroducePreviousTwoVideos,
|
|
|
|
block_collision_scenes.PreviousTwoVideos,
|
2019-02-03 12:14:22 -08:00
|
|
|
simple_scenes.ComingUpWrapper,
|
2019-01-29 14:23:13 -08:00
|
|
|
wordy_scenes.ConnectionToOptics,
|
|
|
|
pi_creature_scenes.OnAnsweringTwice,
|
2019-01-30 11:20:24 -08:00
|
|
|
simple_scenes.LastVideoWrapper,
|
2019-02-03 12:14:22 -08:00
|
|
|
simple_scenes.Rectangle,
|
|
|
|
simple_scenes.ShowRectangleCreation,
|
|
|
|
simple_scenes.LeftEdge,
|
|
|
|
simple_scenes.RightEdge,
|
2019-01-29 14:23:13 -08:00
|
|
|
position_phase_space.IntroducePositionPhaseSpace,
|
2019-01-30 11:20:24 -08:00
|
|
|
position_phase_space.UnscaledPositionPhaseSpaceMass100,
|
2019-02-03 12:14:22 -08:00
|
|
|
simple_scenes.FourtyFiveDegreeLine,
|
2019-01-29 23:53:37 -08:00
|
|
|
position_phase_space.EqualMassCase,
|
|
|
|
pi_creature_scenes.AskAboutEqualMassMomentumTransfer,
|
|
|
|
position_phase_space.FailedAngleRelation,
|
2019-01-30 11:20:24 -08:00
|
|
|
position_phase_space.UnscaledPositionPhaseSpaceMass10,
|
|
|
|
pi_creature_scenes.ComplainAboutRelevanceOfAnalogy,
|
|
|
|
simple_scenes.LastVideoWrapper,
|
2019-02-03 12:14:22 -08:00
|
|
|
simple_scenes.NoteOnEnergyLostToSound,
|
2019-01-30 11:20:24 -08:00
|
|
|
position_phase_space.RescaleCoordinates,
|
|
|
|
wordy_scenes.ConnectionToOpticsTransparent,
|
|
|
|
position_phase_space.RescaleCoordinatesMass16,
|
|
|
|
position_phase_space.RescaleCoordinatesMass64,
|
2019-02-03 12:14:22 -08:00
|
|
|
position_phase_space.RescaleCoordinatesMass100,
|
|
|
|
position_phase_space.IntroduceVelocityVector,
|
|
|
|
position_phase_space.IntroduceVelocityVectorWithoutZoom,
|
|
|
|
position_phase_space.ShowMomentumConservation,
|
|
|
|
wordy_scenes.RearrangeMomentumEquation,
|
|
|
|
simple_scenes.DotProductVideoWrapper,
|
|
|
|
simple_scenes.ShowDotProductMeaning,
|
|
|
|
position_phase_space.JustTheProcessNew,
|
|
|
|
mirror_scenes.ShowTrajectoryWithChangingTheta,
|
|
|
|
pi_creature_scenes.ReplaceOneTrickySceneWithAnother,
|
|
|
|
mirror_scenes.MirrorAndWiresOverlay,
|
|
|
|
pi_creature_scenes.NowForTheGoodPart,
|
|
|
|
mirror_scenes.ReflectWorldThroughMirrorNew,
|
|
|
|
mirror_scenes.ReflectWorldThroughMirrorThetaPoint2,
|
|
|
|
mirror_scenes.ReflectWorldThroughMirrorThetaPoint1,
|
|
|
|
simple_scenes.AskAboutAddingThetaToItself,
|
|
|
|
simple_scenes.AskAboutAddingThetaToItselfThetaPoint1,
|
|
|
|
simple_scenes.AskAboutAddingThetaToItselfThetaPoint2,
|
|
|
|
simple_scenes.FinalFormula,
|
|
|
|
simple_scenes.ArctanSqrtPoint1Angle,
|
|
|
|
simple_scenes.ReviewWrapper,
|
|
|
|
simple_scenes.SurprisedRandy,
|
|
|
|
simple_scenes.TwoSolutionsWrapper,
|
|
|
|
simple_scenes.FinalQuote,
|
|
|
|
simple_scenes.EndScreen,
|
|
|
|
simple_scenes.ClacksSolution2Thumbnail,
|
2019-01-28 10:25:15 -08:00
|
|
|
]
|