diff options
author | simranchhattani | 2020-05-27 19:14:03 +0530 |
---|---|---|
committer | GitHub | 2020-05-27 19:14:03 +0530 |
commit | 8e03fbcadca1d7a4ae0b69dd1062d4cdf89240f5 (patch) | |
tree | b8e85203ae686f2f92fa341d8eaf7106001dbf6c /FSF-2020 | |
parent | 5ecb68a8c5bdfcb98de6053ed4b86015482223e9 (diff) | |
download | FSF-mathematics-python-code-archive-8e03fbcadca1d7a4ae0b69dd1062d4cdf89240f5.tar.gz FSF-mathematics-python-code-archive-8e03fbcadca1d7a4ae0b69dd1062d4cdf89240f5.tar.bz2 FSF-mathematics-python-code-archive-8e03fbcadca1d7a4ae0b69dd1062d4cdf89240f5.zip |
Delete 3D_Vector_Space.py
Diffstat (limited to 'FSF-2020')
-rw-r--r-- | FSF-2020/linear-algebra/vector-spaces/Vector-Spaces/3D_Vector_Space.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/FSF-2020/linear-algebra/vector-spaces/Vector-Spaces/3D_Vector_Space.py b/FSF-2020/linear-algebra/vector-spaces/Vector-Spaces/3D_Vector_Space.py deleted file mode 100644 index 70913eb..0000000 --- a/FSF-2020/linear-algebra/vector-spaces/Vector-Spaces/3D_Vector_Space.py +++ /dev/null @@ -1,14 +0,0 @@ -from manimlib.imports import *
-class ThreeDSpace(ThreeDScene):
- def construct(self):
- curve = ParametricFunction(
- lambda x: np.array([
- 0, -x , x]), color = YELLOW, t_min = -2, t_max = 2)
- axes = ThreeDAxes()
- axes.set_stroke(width=1,color=GOLD)
- self.add(axes)
- self.set_camera_orientation(phi = 70*DEGREES,theta =60*DEGREES)
- self.begin_ambient_camera_rotation(rate=0.3)
- self.play(ShowCreation(curve))
- self.wait(6)
-
|