From 1082d04b7f1250721a061ebb2c4fd840c0d94c2c Mon Sep 17 00:00:00 2001 From: Sridhar Ramesh Date: Mon, 8 Jan 2018 17:24:54 -0800 Subject: [PATCH] Added point_to_coords method to graph_scene. Also, modified MOVIE_DIR in constants.py --- constants.py | 2 +- topics/graph_scene.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/constants.py b/constants.py index 7137f2c1..257cd97d 100644 --- a/constants.py +++ b/constants.py @@ -61,7 +61,7 @@ RIGHT_SIDE = SPACE_WIDTH*RIGHT # Change this to point to where you want # animation files to output -MOVIE_DIR = os.path.join(os.path.expanduser('~'), "Dropbox/3Blue1Brown Team Folder/animations") +MOVIE_DIR = os.path.join(os.path.expanduser('~'), "Dropbox (3Blue1Brown)/3Blue1Brown Team Folder/animations") STAGED_SCENES_DIR = os.path.join(MOVIE_DIR, "staged_scenes") ### THIS_DIR = os.path.dirname(os.path.realpath(__file__)) diff --git a/topics/graph_scene.py b/topics/graph_scene.py index 435ca583..22eac91e 100644 --- a/topics/graph_scene.py +++ b/topics/graph_scene.py @@ -123,6 +123,10 @@ class GraphScene(Scene): result += self.y_axis.number_to_point(y)[1]*UP return result + def point_to_coords(self, point): + return (self.x_axis.point_to_number(point), + self.y_axis.point_to_number(point)) + def get_graph( self, func, color = None,