diff --git a/old_projects/borsuk.py b/old_projects/borsuk.py index 6963dc85..4d1dc65f 100644 --- a/old_projects/borsuk.py +++ b/old_projects/borsuk.py @@ -24,7 +24,7 @@ from mobject.svg_mobject import * from mobject.tex_mobject import * from topics.common_scenes import PatreonThanks -from eoc.graph_scene import GraphScene +from topics.graph_scene import GraphScene class Jewel(VMobject): CONFIG = { diff --git a/eoc/__init__.py b/old_projects/eoc/__init__.py similarity index 100% rename from eoc/__init__.py rename to old_projects/eoc/__init__.py diff --git a/eoc/chapter1.py b/old_projects/eoc/chapter1.py similarity index 99% rename from eoc/chapter1.py rename to old_projects/eoc/chapter1.py index 31d3e63e..5e6adca4 100644 --- a/eoc/chapter1.py +++ b/old_projects/eoc/chapter1.py @@ -25,8 +25,8 @@ from camera import Camera from mobject.svg_mobject import * from mobject.tex_mobject import * -from eoc.graph_scene import GraphScene -from eoc.chapter2 import Car, MoveCar +from topics.graph_scene import GraphScene +from old_projects.eoc.chapter2 import Car, MoveCar from topics.common_scenes import OpeningQuote, PatreonThanks class CircleScene(PiCreatureScene): diff --git a/eoc/chapter10.py b/old_projects/eoc/chapter10.py similarity index 99% rename from eoc/chapter10.py rename to old_projects/eoc/chapter10.py index 810d8d43..698ac535 100644 --- a/eoc/chapter10.py +++ b/old_projects/eoc/chapter10.py @@ -27,8 +27,8 @@ from camera import Camera from mobject.svg_mobject import * from mobject.tex_mobject import * -from eoc.graph_scene import GraphScene -from eoc.chapter8 import AreaIsDerivative +from topics.graph_scene import GraphScene +from old_projects.eoc.chapter8 import AreaIsDerivative from topics.common_scenes import OpeningQuote, PatreonThanks def derivative(func, x, n = 1, dx = 0.01): diff --git a/eoc/chapter2.py b/old_projects/eoc/chapter2.py similarity index 99% rename from eoc/chapter2.py rename to old_projects/eoc/chapter2.py index a79c128d..84e999d9 100644 --- a/eoc/chapter2.py +++ b/old_projects/eoc/chapter2.py @@ -25,7 +25,7 @@ from mobject.svg_mobject import * from mobject.tex_mobject import * from topics.common_scenes import OpeningQuote, PatreonThanks -from eoc.graph_scene import * +from topics.graph_scene import * DISTANCE_COLOR = BLUE TIME_COLOR = YELLOW diff --git a/eoc/chapter3.py b/old_projects/eoc/chapter3.py similarity index 99% rename from eoc/chapter3.py rename to old_projects/eoc/chapter3.py index 857e8aca..98538493 100644 --- a/eoc/chapter3.py +++ b/old_projects/eoc/chapter3.py @@ -26,9 +26,9 @@ from mobject.tex_mobject import * from topics.common_scenes import OpeningQuote, PatreonThanks -from eoc.chapter2 import DISTANCE_COLOR, TIME_COLOR, \ +from old_projects.eoc.chapter2 import DISTANCE_COLOR, TIME_COLOR, \ VELOCITY_COLOR, Car, MoveCar -from eoc.graph_scene import * +from topics.graph_scene import * OUTPUT_COLOR = DISTANCE_COLOR INPUT_COLOR = TIME_COLOR diff --git a/eoc/chapter4.py b/old_projects/eoc/chapter4.py similarity index 99% rename from eoc/chapter4.py rename to old_projects/eoc/chapter4.py index 60e07dd3..c7aad5fa 100644 --- a/eoc/chapter4.py +++ b/old_projects/eoc/chapter4.py @@ -27,7 +27,7 @@ from mobject.tex_mobject import * from topics.common_scenes import OpeningQuote, PatreonThanks -from eoc.graph_scene import * +from topics.graph_scene import * SINE_COLOR = BLUE X_SQUARED_COLOR = GREEN diff --git a/eoc/chapter5.py b/old_projects/eoc/chapter5.py similarity index 99% rename from eoc/chapter5.py rename to old_projects/eoc/chapter5.py index 814afa91..6275db10 100644 --- a/eoc/chapter5.py +++ b/old_projects/eoc/chapter5.py @@ -27,8 +27,8 @@ from mobject.tex_mobject import * from topics.common_scenes import OpeningQuote, PatreonThanks -from eoc.graph_scene import * -from eoc.chapter4 import ThreeLinesChainRule +from topics.graph_scene import * +from old_projects.eoc.chapter4 import ThreeLinesChainRule class ExpFootnoteOpeningQuote(OpeningQuote): CONFIG = { diff --git a/eoc/chapter6.py b/old_projects/eoc/chapter6.py similarity index 99% rename from eoc/chapter6.py rename to old_projects/eoc/chapter6.py index a81976bc..2a483672 100644 --- a/eoc/chapter6.py +++ b/old_projects/eoc/chapter6.py @@ -26,7 +26,7 @@ from mobject.svg_mobject import * from mobject.tex_mobject import * from topics.common_scenes import * -from eoc.graph_scene import * +from topics.graph_scene import * SPACE_UNIT_TO_PLANE_UNIT = 0.75 diff --git a/eoc/chapter7.py b/old_projects/eoc/chapter7.py similarity index 99% rename from eoc/chapter7.py rename to old_projects/eoc/chapter7.py index a5d27322..824a1d41 100644 --- a/eoc/chapter7.py +++ b/old_projects/eoc/chapter7.py @@ -29,7 +29,7 @@ from mobject.tex_mobject import * from topics.common_scenes import OpeningQuote, PatreonThanks -from eoc.graph_scene import * +from topics.graph_scene import * class Chapter7OpeningQuote(OpeningQuote): CONFIG = { diff --git a/eoc/chapter8.py b/old_projects/eoc/chapter8.py similarity index 99% rename from eoc/chapter8.py rename to old_projects/eoc/chapter8.py index 1d99aaa0..feeedcdd 100644 --- a/eoc/chapter8.py +++ b/old_projects/eoc/chapter8.py @@ -26,9 +26,9 @@ from camera import Camera from mobject.svg_mobject import * from mobject.tex_mobject import * -from eoc.graph_scene import GraphScene -from eoc.chapter1 import Thumbnail as Chapter1Thumbnail -from eoc.chapter2 import Car, MoveCar, ShowSpeedometer, \ +from topics.graph_scene import GraphScene +from old_projects.eoc.chapter1 import Thumbnail as Chapter1Thumbnail +from old_projects.eoc.chapter2 import Car, MoveCar, ShowSpeedometer, \ IncrementNumber, GraphCarTrajectory, SecantLineToTangentLine, \ VELOCITY_COLOR, TIME_COLOR, DISTANCE_COLOR from topics.common_scenes import OpeningQuote, PatreonThanks diff --git a/eoc/chapter9.py b/old_projects/eoc/chapter9.py similarity index 99% rename from eoc/chapter9.py rename to old_projects/eoc/chapter9.py index 83c76351..a7f9050f 100644 --- a/eoc/chapter9.py +++ b/old_projects/eoc/chapter9.py @@ -27,8 +27,8 @@ from camera import Camera from mobject.svg_mobject import * from mobject.tex_mobject import * -from eoc.graph_scene import GraphScene -from eoc.chapter1 import Thumbnail as Chapter1Thumbnail +from topics.graph_scene import GraphScene +from old_projects.eoc.chapter1 import Thumbnail as Chapter1Thumbnail from topics.common_scenes import OpeningQuote, PatreonThanks class Chapter9OpeningQuote(OpeningQuote): diff --git a/eoc/footnote.py b/old_projects/eoc/footnote.py similarity index 99% rename from eoc/footnote.py rename to old_projects/eoc/footnote.py index 1ce75af1..62dcd456 100644 --- a/eoc/footnote.py +++ b/old_projects/eoc/footnote.py @@ -27,9 +27,9 @@ from camera import Camera from mobject.svg_mobject import * from mobject.tex_mobject import * -from eoc.graph_scene import GraphScene -from eoc.chapter1 import Car, MoveCar -from eoc.chapter10 import derivative +from topics.graph_scene import GraphScene +from old_projects.eoc.chapter1 import Car, MoveCar +from old_projects.eoc.chapter10 import derivative #revert_to_original_skipping_status diff --git a/eoc/old_chapter1.py b/old_projects/eoc/old_chapter1.py similarity index 99% rename from eoc/old_chapter1.py rename to old_projects/eoc/old_chapter1.py index 483bb780..2d6f7b31 100644 --- a/eoc/old_chapter1.py +++ b/old_projects/eoc/old_chapter1.py @@ -24,7 +24,7 @@ from camera import Camera from mobject.svg_mobject import * from mobject.tex_mobject import * -from eoc.graph_scene import GraphScene +from topics.graph_scene import GraphScene #### Warning, scenes here not updated based on most recent GraphScene changes ####### diff --git a/old_projects/fractal_dimension.py b/old_projects/fractal_dimension.py index 5df45b27..786964d7 100644 --- a/old_projects/fractal_dimension.py +++ b/old_projects/fractal_dimension.py @@ -24,8 +24,8 @@ from mobject.tex_mobject import * from fractal_charm import FractalCreation -from eoc.graph_scene import GraphScene -from eoc.chapter1 import PatreonThanks +from topics.graph_scene import GraphScene +from topics.common_scenes import PatreonThanks def break_up(mobject, factor = 1.3): mobject.scale_in_place(factor) diff --git a/eoc/graph_scene.py b/topics/graph_scene.py similarity index 100% rename from eoc/graph_scene.py rename to topics/graph_scene.py