From ad1c0e62ba7ff5bb9612a8fd674005a26e3fd80b Mon Sep 17 00:00:00 2001 From: Vaishnavi Date: Wed, 24 Jun 2020 00:44:00 +0530 Subject: Update file2_Traces_and_Tangent.py --- .../Critical-Points/file2_Traces_and_Tangent.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'FSF-2020') diff --git a/FSF-2020/approximations-and-optimizations/Critical-Points/file2_Traces_and_Tangent.py b/FSF-2020/approximations-and-optimizations/Critical-Points/file2_Traces_and_Tangent.py index 95c3af9..4b020e1 100644 --- a/FSF-2020/approximations-and-optimizations/Critical-Points/file2_Traces_and_Tangent.py +++ b/FSF-2020/approximations-and-optimizations/Critical-Points/file2_Traces_and_Tangent.py @@ -6,8 +6,8 @@ class firstScene(ThreeDScene): def construct(self): axes = ThreeDAxes().scale(1) - label_x= TextMobject("$x$").shift([5.8,-0.5,0]) - label_y= TextMobject("$y$").shift([-0.5,-5.6,0]).rotate(-4.5) + label_x = TextMobject("$x$").shift([5.8,-0.5,0]) + label_y = TextMobject("$y$").shift([-0.5,-5.6,0]).rotate(-4.5) #---- graph of f(x,y) = -x^2-y^2 surface = ParametricSurface( @@ -50,8 +50,8 @@ class secondScene(ThreeDScene): def construct(self): axes = ThreeDAxes().scale(1) - label_x= TextMobject("$x$").shift([5.8,-0.5,0]) - label_y= TextMobject("$y$").shift([-0.5,-5.6,0]).rotate(-4.5) + label_x = TextMobject("$x$").shift([5.8,-0.5,0]) + label_y = TextMobject("$y$").shift([-0.5,-5.6,0]).rotate(-4.5) #---- graph of f(x,y) = -x^2-y^2 surface = ParametricSurface( -- cgit