diff options
author | Saarth Deshpande | 2020-07-01 13:11:25 +0530 |
---|---|---|
committer | Saarth Deshpande | 2020-07-01 13:11:25 +0530 |
commit | 2fee7bc2a219755e6018d3c1a5fb995d8eccf287 (patch) | |
tree | c319abbc6cc390af9ea588b374a576e8ed9a975c /FSF-2020/calculus-of-several-variables/geometry-of-planes-and-curves/arc-length-and-curvature/file3_curvature_interpretation.py | |
parent | 564956f093a9aa612d07653ddf73163495321992 (diff) | |
download | FSF-mathematics-python-code-archive-2fee7bc2a219755e6018d3c1a5fb995d8eccf287.tar.gz FSF-mathematics-python-code-archive-2fee7bc2a219755e6018d3c1a5fb995d8eccf287.tar.bz2 FSF-mathematics-python-code-archive-2fee7bc2a219755e6018d3c1a5fb995d8eccf287.zip |
math error fix
Diffstat (limited to 'FSF-2020/calculus-of-several-variables/geometry-of-planes-and-curves/arc-length-and-curvature/file3_curvature_interpretation.py')
-rw-r--r-- | FSF-2020/calculus-of-several-variables/geometry-of-planes-and-curves/arc-length-and-curvature/file3_curvature_interpretation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FSF-2020/calculus-of-several-variables/geometry-of-planes-and-curves/arc-length-and-curvature/file3_curvature_interpretation.py b/FSF-2020/calculus-of-several-variables/geometry-of-planes-and-curves/arc-length-and-curvature/file3_curvature_interpretation.py index cf6b032..d8dd0a4 100644 --- a/FSF-2020/calculus-of-several-variables/geometry-of-planes-and-curves/arc-length-and-curvature/file3_curvature_interpretation.py +++ b/FSF-2020/calculus-of-several-variables/geometry-of-planes-and-curves/arc-length-and-curvature/file3_curvature_interpretation.py @@ -20,7 +20,7 @@ class interpretation(Scene): # self.play(FadeIn(VGroup(*[tgt, tgt2, nm, nm2, nmText, tgtText, square, arrow, arrowText]))) tgt2text = TextMobject(r'$\frac{r\prime (t)}{\left| r\prime (t)\right|}$').shift(1.1*UP).scale(0.7).rotate(63*DEGREES ) - nm2text = TextMobject(r'$\frac{dT}{dt} = \frac{r\prime\prime (t)}{\left| r\prime (t)\right|}$').scale(0.6).shift(0.5*RIGHT+0.6*DOWN).rotate(-25*DEGREES) + nm2text = TextMobject(r'$\frac{r\prime\prime (t)}{\left| r\prime (t)\right|}$').scale(0.7).shift(0.7*RIGHT+0.8*DOWN).rotate(-25*DEGREES) unit2 = unit.copy().scale(0.5).shift(0.75*LEFT+0.25*DOWN) self.play(FadeIn(VGroup(*[tgt, tgtText]))) |