diff options
author | G Sri Harsha | 2020-07-10 18:53:51 +0530 |
---|---|---|
committer | GitHub | 2020-07-10 18:53:51 +0530 |
commit | f51eb5525ed9c46fd39f7db8a50b012512c9b7c3 (patch) | |
tree | 394274b2b47e0a8cadade20a392852ddec05d870 /FSF-2020 | |
parent | a2615226fb94ce109c284fd1f496396aa099c812 (diff) | |
download | FSF-mathematics-python-code-archive-f51eb5525ed9c46fd39f7db8a50b012512c9b7c3.tar.gz FSF-mathematics-python-code-archive-f51eb5525ed9c46fd39f7db8a50b012512c9b7c3.tar.bz2 FSF-mathematics-python-code-archive-f51eb5525ed9c46fd39f7db8a50b012512c9b7c3.zip |
Update video2_convergence_of_a_function.py
Diffstat (limited to 'FSF-2020')
-rw-r--r-- | FSF-2020/calculus/series-and-transformations/Power Series/video2_convergence_of_a_function.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/FSF-2020/calculus/series-and-transformations/Power Series/video2_convergence_of_a_function.py b/FSF-2020/calculus/series-and-transformations/Power Series/video2_convergence_of_a_function.py index 19b8b8b..8680792 100644 --- a/FSF-2020/calculus/series-and-transformations/Power Series/video2_convergence_of_a_function.py +++ b/FSF-2020/calculus/series-and-transformations/Power Series/video2_convergence_of_a_function.py @@ -69,10 +69,7 @@ class graphScene(GraphScene): eqText[i].scale(0.6) eqText[i].set_color(BLUE) eqText[i].shift(ORIGIN+UP*2*y_each_unit+RIGHT*3.3*x_each_unit) - # eqTextTerm=TextMobject("And so on..!") - # eqTextTerm.set_color(BLUE) - # eqTextTerm.scale(0.6) - # eqTextTerm.shift(ORIGIN+UP*2*y_each_unit+3*RIGHT*x_each_unit) + equation1 = self.get_graph(lambda x : 1,color = RED,x_min = -8,x_max=8) equation2 = self.get_graph(lambda x : 1-math.pow(x,2),color = RED,x_min = -1.7,x_max=1.7) equation3 = self.get_graph(lambda x : 1-math.pow(x,2)+math.pow(x,4),color = RED,x_min = -1.6,x_max=1.6) |