summaryrefslogtreecommitdiff
path: root/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions
diff options
context:
space:
mode:
authorSomnath Pandit2020-06-14 00:42:47 +0530
committerSomnath Pandit2020-06-14 00:42:47 +0530
commit5e27333898ff223d6fc52cd481207d4fb7bedb19 (patch)
treea6a896394dc24c69f803a356977c882b3b80b376 /FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions
parent70f35b9f0b2f01ca60416fb24e8f4618cdd93735 (diff)
downloadFSF-mathematics-python-code-archive-5e27333898ff223d6fc52cd481207d4fb7bedb19.tar.gz
FSF-mathematics-python-code-archive-5e27333898ff223d6fc52cd481207d4fb7bedb19.tar.bz2
FSF-mathematics-python-code-archive-5e27333898ff223d6fc52cd481207d4fb7bedb19.zip
checked a typing mistake
Diffstat (limited to 'FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions')
-rw-r--r--FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/fundamental-theorem-of-line-integral/file2_line_int_independent_of_path.gifbin1403902 -> 1409001 bytes
-rw-r--r--FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/fundamental-theorem-of-line-integral/file2_line_int_independent_of_path.py2
2 files changed, 1 insertions, 1 deletions
diff --git a/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/fundamental-theorem-of-line-integral/file2_line_int_independent_of_path.gif b/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/fundamental-theorem-of-line-integral/file2_line_int_independent_of_path.gif
index 29c6d02..8d375bb 100644
--- a/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/fundamental-theorem-of-line-integral/file2_line_int_independent_of_path.gif
+++ b/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/fundamental-theorem-of-line-integral/file2_line_int_independent_of_path.gif
Binary files differ
diff --git a/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/fundamental-theorem-of-line-integral/file2_line_int_independent_of_path.py b/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/fundamental-theorem-of-line-integral/file2_line_int_independent_of_path.py
index b9597b6..b8f7cfa 100644
--- a/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/fundamental-theorem-of-line-integral/file2_line_int_independent_of_path.py
+++ b/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/fundamental-theorem-of-line-integral/file2_line_int_independent_of_path.py
@@ -95,7 +95,7 @@ class LineIntegration(GraphScene):
def get_endpoints_of_curve(self):
points=[[-3,0],[2,2]]
- point_labels= ["P_i","P_f"]
+ point_labels= ["P_f","P_i"]
for point,label in zip(points,point_labels):
dot=Dot(self.coords_to_point(*point)).set_color(RED)
dot_label=TexMobject(label)