diff options
author | Somnath Pandit | 2020-06-14 00:42:47 +0530 |
---|---|---|
committer | Somnath Pandit | 2020-06-14 00:42:47 +0530 |
commit | 5e27333898ff223d6fc52cd481207d4fb7bedb19 (patch) | |
tree | a6a896394dc24c69f803a356977c882b3b80b376 /FSF-2020 | |
parent | 70f35b9f0b2f01ca60416fb24e8f4618cdd93735 (diff) | |
download | FSF-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')
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 Binary files differindex 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 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) |