Finished with full Essence of Calculus project

This commit is contained in:
Grant Sanderson
2017-05-08 08:20:14 -07:00
parent 6bca9952ae
commit 2c121a0ba7
16 changed files with 24 additions and 24 deletions

View File

@ -24,7 +24,7 @@ from mobject.svg_mobject import *
from mobject.tex_mobject import * from mobject.tex_mobject import *
from topics.common_scenes import PatreonThanks from topics.common_scenes import PatreonThanks
from eoc.graph_scene import GraphScene from topics.graph_scene import GraphScene
class Jewel(VMobject): class Jewel(VMobject):
CONFIG = { CONFIG = {

View File

@ -25,8 +25,8 @@ from camera import Camera
from mobject.svg_mobject import * from mobject.svg_mobject import *
from mobject.tex_mobject import * from mobject.tex_mobject import *
from eoc.graph_scene import GraphScene from topics.graph_scene import GraphScene
from eoc.chapter2 import Car, MoveCar from old_projects.eoc.chapter2 import Car, MoveCar
from topics.common_scenes import OpeningQuote, PatreonThanks from topics.common_scenes import OpeningQuote, PatreonThanks
class CircleScene(PiCreatureScene): class CircleScene(PiCreatureScene):

View File

@ -27,8 +27,8 @@ from camera import Camera
from mobject.svg_mobject import * from mobject.svg_mobject import *
from mobject.tex_mobject import * from mobject.tex_mobject import *
from eoc.graph_scene import GraphScene from topics.graph_scene import GraphScene
from eoc.chapter8 import AreaIsDerivative from old_projects.eoc.chapter8 import AreaIsDerivative
from topics.common_scenes import OpeningQuote, PatreonThanks from topics.common_scenes import OpeningQuote, PatreonThanks
def derivative(func, x, n = 1, dx = 0.01): def derivative(func, x, n = 1, dx = 0.01):

View File

@ -25,7 +25,7 @@ from mobject.svg_mobject import *
from mobject.tex_mobject import * from mobject.tex_mobject import *
from topics.common_scenes import OpeningQuote, PatreonThanks from topics.common_scenes import OpeningQuote, PatreonThanks
from eoc.graph_scene import * from topics.graph_scene import *
DISTANCE_COLOR = BLUE DISTANCE_COLOR = BLUE
TIME_COLOR = YELLOW TIME_COLOR = YELLOW

View File

@ -26,9 +26,9 @@ from mobject.tex_mobject import *
from topics.common_scenes import OpeningQuote, PatreonThanks 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 VELOCITY_COLOR, Car, MoveCar
from eoc.graph_scene import * from topics.graph_scene import *
OUTPUT_COLOR = DISTANCE_COLOR OUTPUT_COLOR = DISTANCE_COLOR
INPUT_COLOR = TIME_COLOR INPUT_COLOR = TIME_COLOR

View File

@ -27,7 +27,7 @@ from mobject.tex_mobject import *
from topics.common_scenes import OpeningQuote, PatreonThanks from topics.common_scenes import OpeningQuote, PatreonThanks
from eoc.graph_scene import * from topics.graph_scene import *
SINE_COLOR = BLUE SINE_COLOR = BLUE
X_SQUARED_COLOR = GREEN X_SQUARED_COLOR = GREEN

View File

@ -27,8 +27,8 @@ from mobject.tex_mobject import *
from topics.common_scenes import OpeningQuote, PatreonThanks from topics.common_scenes import OpeningQuote, PatreonThanks
from eoc.graph_scene import * from topics.graph_scene import *
from eoc.chapter4 import ThreeLinesChainRule from old_projects.eoc.chapter4 import ThreeLinesChainRule
class ExpFootnoteOpeningQuote(OpeningQuote): class ExpFootnoteOpeningQuote(OpeningQuote):
CONFIG = { CONFIG = {

View File

@ -26,7 +26,7 @@ from mobject.svg_mobject import *
from mobject.tex_mobject import * from mobject.tex_mobject import *
from topics.common_scenes import * from topics.common_scenes import *
from eoc.graph_scene import * from topics.graph_scene import *
SPACE_UNIT_TO_PLANE_UNIT = 0.75 SPACE_UNIT_TO_PLANE_UNIT = 0.75

View File

@ -29,7 +29,7 @@ from mobject.tex_mobject import *
from topics.common_scenes import OpeningQuote, PatreonThanks from topics.common_scenes import OpeningQuote, PatreonThanks
from eoc.graph_scene import * from topics.graph_scene import *
class Chapter7OpeningQuote(OpeningQuote): class Chapter7OpeningQuote(OpeningQuote):
CONFIG = { CONFIG = {

View File

@ -26,9 +26,9 @@ from camera import Camera
from mobject.svg_mobject import * from mobject.svg_mobject import *
from mobject.tex_mobject import * from mobject.tex_mobject import *
from eoc.graph_scene import GraphScene from topics.graph_scene import GraphScene
from eoc.chapter1 import Thumbnail as Chapter1Thumbnail from old_projects.eoc.chapter1 import Thumbnail as Chapter1Thumbnail
from eoc.chapter2 import Car, MoveCar, ShowSpeedometer, \ from old_projects.eoc.chapter2 import Car, MoveCar, ShowSpeedometer, \
IncrementNumber, GraphCarTrajectory, SecantLineToTangentLine, \ IncrementNumber, GraphCarTrajectory, SecantLineToTangentLine, \
VELOCITY_COLOR, TIME_COLOR, DISTANCE_COLOR VELOCITY_COLOR, TIME_COLOR, DISTANCE_COLOR
from topics.common_scenes import OpeningQuote, PatreonThanks from topics.common_scenes import OpeningQuote, PatreonThanks

View File

@ -27,8 +27,8 @@ from camera import Camera
from mobject.svg_mobject import * from mobject.svg_mobject import *
from mobject.tex_mobject import * from mobject.tex_mobject import *
from eoc.graph_scene import GraphScene from topics.graph_scene import GraphScene
from eoc.chapter1 import Thumbnail as Chapter1Thumbnail from old_projects.eoc.chapter1 import Thumbnail as Chapter1Thumbnail
from topics.common_scenes import OpeningQuote, PatreonThanks from topics.common_scenes import OpeningQuote, PatreonThanks
class Chapter9OpeningQuote(OpeningQuote): class Chapter9OpeningQuote(OpeningQuote):

View File

@ -27,9 +27,9 @@ from camera import Camera
from mobject.svg_mobject import * from mobject.svg_mobject import *
from mobject.tex_mobject import * from mobject.tex_mobject import *
from eoc.graph_scene import GraphScene from topics.graph_scene import GraphScene
from eoc.chapter1 import Car, MoveCar from old_projects.eoc.chapter1 import Car, MoveCar
from eoc.chapter10 import derivative from old_projects.eoc.chapter10 import derivative
#revert_to_original_skipping_status #revert_to_original_skipping_status

View File

@ -24,7 +24,7 @@ from camera import Camera
from mobject.svg_mobject import * from mobject.svg_mobject import *
from mobject.tex_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 ####### #### Warning, scenes here not updated based on most recent GraphScene changes #######

View File

@ -24,8 +24,8 @@ from mobject.tex_mobject import *
from fractal_charm import FractalCreation from fractal_charm import FractalCreation
from eoc.graph_scene import GraphScene from topics.graph_scene import GraphScene
from eoc.chapter1 import PatreonThanks from topics.common_scenes import PatreonThanks
def break_up(mobject, factor = 1.3): def break_up(mobject, factor = 1.3):
mobject.scale_in_place(factor) mobject.scale_in_place(factor)