summaryrefslogtreecommitdiff
path: root/FSF-2020/linear-algebra
diff options
context:
space:
mode:
authorsimranchhattani2020-07-11 23:32:40 +0530
committerGitHub2020-07-11 23:32:40 +0530
commit5a45e266c3484c6bb2ff46cf68ce67bbfe566ee5 (patch)
tree0df4e05aab1f9520a5eb032a06a6b30f82744e2e /FSF-2020/linear-algebra
parent88f9fd8860d8bcfa5794a30d00f21c119b266eea (diff)
downloadFSF-mathematics-python-code-archive-5a45e266c3484c6bb2ff46cf68ce67bbfe566ee5.tar.gz
FSF-mathematics-python-code-archive-5a45e266c3484c6bb2ff46cf68ce67bbfe566ee5.tar.bz2
FSF-mathematics-python-code-archive-5a45e266c3484c6bb2ff46cf68ce67bbfe566ee5.zip
Delete Linear_Subspace.py
Diffstat (limited to 'FSF-2020/linear-algebra')
-rw-r--r--FSF-2020/linear-algebra/vector-spaces/Vector-Spaces/Subspaces/Linear_Subspace.py42
1 files changed, 0 insertions, 42 deletions
diff --git a/FSF-2020/linear-algebra/vector-spaces/Vector-Spaces/Subspaces/Linear_Subspace.py b/FSF-2020/linear-algebra/vector-spaces/Vector-Spaces/Subspaces/Linear_Subspace.py
deleted file mode 100644
index 9062b30..0000000
--- a/FSF-2020/linear-algebra/vector-spaces/Vector-Spaces/Subspaces/Linear_Subspace.py
+++ /dev/null
@@ -1,42 +0,0 @@
-from manimlib.imports import *
-class Subspace(ThreeDScene):
-
-
- def construct(self):
- axes = ThreeDAxes()
- self.set_camera_orientation(phi = 80*DEGREES,theta =110*DEGREES)
- self.begin_ambient_camera_rotation(rate=0.09)
- cube = Cube(stroke_width=5,color=WHITE).shift([1.5,1.5,1.5]).scale(1.5)
- cube.set_fill(TEAL)
-
- cube.set_opacity(0.4)
- line = Line(color=MAROON,set_opacity=100).shift([1.5,1.5,1.5]).scale(1.5)
- plane1 = Polygon([0,0,3],[3,0,3],[3,3,0],[0,3,0])
- plane1.set_opacity(0.8)
- plane1.set_fill(YELLOW)
- plane1.set_color(YELLOW)
-
-
- plane2 = Polygon([0,3,3],[3,3,3],[3,0,0],[0,0,0])
- plane2.set_opacity(0.7)
- plane2.set_fill(RED)
- plane2.set_color(RED)
-
- vgroup = VGroup(plane1,plane2,line,cube)
- vgroup.shift([-2,-2,-2])
-
- text = TextMobject(r"\text{The}",r"\text{line}",r"\text{representing the intersection of the two planes is a Subspace.}",opacity = 0.6).scale(0.7).shift(3*UP)
- text[1].set_color(MAROON)
- self.add_fixed_in_frame_mobjects(text)
- self.play(ShowCreation(text))
-
-
- self.play(ShowCreation(cube))
- self.play(ShowCreation(plane1))
- self.play(ShowCreation(plane2))
- self.play(ShowCreation(line))
- self.wait(10)
-
-
-
- \ No newline at end of file