diff options
author | G Sri Harsha | 2020-07-10 18:58:53 +0530 |
---|---|---|
committer | GitHub | 2020-07-10 18:58:53 +0530 |
commit | 479e8417f45189d03b7b575c6d24834593933059 (patch) | |
tree | da58b98352de34fe44befcc0fe968560722da796 /FSF-2020/calculus/series-and-transformations/Taylor Series | |
parent | 832df57b5aa77acd216768d3a9410c2037c74539 (diff) | |
download | FSF-mathematics-python-code-archive-479e8417f45189d03b7b575c6d24834593933059.tar.gz FSF-mathematics-python-code-archive-479e8417f45189d03b7b575c6d24834593933059.tar.bz2 FSF-mathematics-python-code-archive-479e8417f45189d03b7b575c6d24834593933059.zip |
Update video4_DivergentRemainder.py
Diffstat (limited to 'FSF-2020/calculus/series-and-transformations/Taylor Series')
-rw-r--r-- | FSF-2020/calculus/series-and-transformations/Taylor Series/video4_DivergentRemainder.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/FSF-2020/calculus/series-and-transformations/Taylor Series/video4_DivergentRemainder.py b/FSF-2020/calculus/series-and-transformations/Taylor Series/video4_DivergentRemainder.py index 1f41c97..6b368da 100644 --- a/FSF-2020/calculus/series-and-transformations/Taylor Series/video4_DivergentRemainder.py +++ b/FSF-2020/calculus/series-and-transformations/Taylor Series/video4_DivergentRemainder.py @@ -43,7 +43,6 @@ class graphScene(GraphScene): bottomText1=TextMobject("$R_{n}(x)=\\frac { d }{ dx } ($","area bounded","$)$") bottomText1.set_color_by_tex_to_color_map({"area bounded":ORANGE}) - #bottomText2.set_color_by_tex_to_color_map({"area bounded":BLUE}) arrow=TextMobject("$\downarrow$") arrow.scale(2.5) arrow.shift(ORIGIN+x_each_unit*RIGHT*9.5+UP*y_each_unit) @@ -56,12 +55,8 @@ class graphScene(GraphScene): increasingText.scale(0.4) bottomText1.scale(0.5) - #bottomText2.scale(0.5) - #bottomText3.scale(0.5) bottomText1.shift(3.5*LEFT+2*DOWN) - #bottomText2.shift(3.5*LEFT+2.4*DOWN) - #bottomText3.shift(3.5*LEFT+2.8*DOWN) dline=DashedLine(start=ORIGIN+8*y_each_unit*UP,end=ORIGIN+8*y_each_unit*DOWN) dline.shift(ORIGIN+x_each_unit*4*RIGHT) @@ -72,11 +67,9 @@ class graphScene(GraphScene): self.play(Write(dline)) self.wait(0.5) self.play(ShowCreation(area1),ShowCreation(area2),Write(bottomText1)) - # self.play(Write(bottomText2)) - # self.play(FadeIn(bottomText3)) self.play(Write(arrow)) self.wait(0.7) self.play(Write(increasingText)) self.play(FadeIn(followupText)) self.wait(2) -
\ No newline at end of file + |