summaryrefslogtreecommitdiff
path: root/FSF-2020/integrals-of-multivariable-functions
diff options
context:
space:
mode:
authorpanditsomnath10016git2020-05-19 20:22:43 +0530
committerGitHub2020-05-19 20:22:43 +0530
commit8088f5ff7693e9a6d02f74876b39f9729737024f (patch)
tree33b91792410aba70a7b2107691dd4f4e73c91531 /FSF-2020/integrals-of-multivariable-functions
parent8f21bfeeaef888ffed958d933b58b057bf215e42 (diff)
downloadFSF-mathematics-python-code-archive-8088f5ff7693e9a6d02f74876b39f9729737024f.tar.gz
FSF-mathematics-python-code-archive-8088f5ff7693e9a6d02f74876b39f9729737024f.tar.bz2
FSF-mathematics-python-code-archive-8088f5ff7693e9a6d02f74876b39f9729737024f.zip
Update y_limit_dependent_on_x.py
Diffstat (limited to 'FSF-2020/integrals-of-multivariable-functions')
-rw-r--r--FSF-2020/integrals-of-multivariable-functions/y_limit_dependent_on_x.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/FSF-2020/integrals-of-multivariable-functions/y_limit_dependent_on_x.py b/FSF-2020/integrals-of-multivariable-functions/y_limit_dependent_on_x.py
index 27fe23c..4894ebf 100644
--- a/FSF-2020/integrals-of-multivariable-functions/y_limit_dependent_on_x.py
+++ b/FSF-2020/integrals-of-multivariable-functions/y_limit_dependent_on_x.py
@@ -1,6 +1,6 @@
from manimlib.imports import *
-class AreaUnderCurve(GraphScene):
+class YlimitXdependent(GraphScene):
CONFIG = {
"x_min" : 0,
"x_max" : 1,
@@ -26,7 +26,7 @@ class AreaUnderCurve(GraphScene):
x_min = 0,
x_max = 1,
color = RED)
- line_eqn=TextMobject("2x+y=0").move_to(self.graph_origin+.8*X+Y).rotate(np.arctan(-2))
+ line_eqn=TextMobject("2x+y=2").move_to(self.graph_origin+.8*X+Y).rotate(np.arctan(-2))
self.line=line
caption=TextMobject(r"See the value of $y$ \\ is changing with $x$").move_to(self.graph_origin+1.2*X+1.8*Y)
@@ -36,7 +36,7 @@ class AreaUnderCurve(GraphScene):
self.play(Write(caption))
self.show_y_values_at_different_x()
- self.wait(2)
+ self.wait(.5)
###################
def show_area(self):
@@ -59,10 +59,10 @@ class AreaUnderCurve(GraphScene):
self.line,
x_min = 0,
x_max = 1,
- dx =.02,
+ dx =.01,
start_color = BLUE,
end_color = BLUE,
- fill_opacity = 0.75,
+ fill_opacity =1,
stroke_width = 0,
)
# self.play(ShowCreation(rects))
@@ -81,10 +81,10 @@ class AreaUnderCurve(GraphScene):
last_rect = None
for rect in rects_subset:
brace = Brace(rect, LEFT, buff = 0)
- y = TexMobject("y=2-2x")
+ y = TexMobject("y=2-2x")#.rotate(PI/2)
y.next_to(brace, LEFT, SMALL_BUFF)
anims = [
- rect.set_fill, YELLOW, 1,
+ rect.set_fill, BLUE_E, 1,
dx_brace_group.next_to, rect, DOWN, SMALL_BUFF
]
if last_rect is not None:
@@ -109,5 +109,5 @@ class AreaUnderCurve(GraphScene):
y = last_y
y_brace = last_brace
-
+
#uploaded by Somnath Pandit.FSF2020_Double_Integral