diff options
author | Somnath Pandit | 2020-06-19 23:36:15 +0530 |
---|---|---|
committer | Somnath Pandit | 2020-06-19 23:36:15 +0530 |
commit | 97c037a7a22fc31083ad48e6faa661645dfbcd40 (patch) | |
tree | 89aa3597abc6fb0936583804b764aab4511a203d /FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/vector-fields | |
parent | dd361296965480c0c94b6ae035e7bdd898b112a4 (diff) | |
download | FSF-mathematics-python-code-archive-97c037a7a22fc31083ad48e6faa661645dfbcd40.tar.gz FSF-mathematics-python-code-archive-97c037a7a22fc31083ad48e6faa661645dfbcd40.tar.bz2 FSF-mathematics-python-code-archive-97c037a7a22fc31083ad48e6faa661645dfbcd40.zip |
update positions
Diffstat (limited to 'FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/vector-fields')
2 files changed, 4 insertions, 3 deletions
diff --git a/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/vector-fields/file3_constructing_vector_field.gif b/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/vector-fields/file3_constructing_vector_field.gif Binary files differindex a3ac7ed..cc10583 100644 --- a/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/vector-fields/file3_constructing_vector_field.gif +++ b/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/vector-fields/file3_constructing_vector_field.gif diff --git a/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/vector-fields/file3_constructing_vector_field.py b/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/vector-fields/file3_constructing_vector_field.py index f90705a..1fce3da 100644 --- a/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/vector-fields/file3_constructing_vector_field.py +++ b/FSF-2020/calculus-of-several-variables/integrals-of-multivariable-functions/vector-fields/file3_constructing_vector_field.py @@ -45,7 +45,9 @@ class VectorFields(GraphScene): ) self.show_points() + self.wait(.5) self.show_func_machine() + self.wait(1) self.produce_vectors(vector_field) self.wait(2) @@ -102,14 +104,14 @@ class VectorFields(GraphScene): def go_to_machine(self,dot): self.play(ApplyMethod( dot.move_to, - self.func_machine, + self.func_machine,[0,1,0], ), run_time=self.run_time ) self.play(FadeOut(dot),run_time=self.run_time) def take_vec_from_machine(self,vect,position): - vect.next_to(self.func_machine,DL,buff=-.4) + vect.next_to(self.func_machine,DOWN,buff=-.4) self.play(ApplyMethod( vect.move_to,position ), @@ -131,4 +133,3 @@ class VectorFields(GraphScene): #uploaded by Somnath Pandit. FSF2020_Vector_fields - |