summaryrefslogtreecommitdiff
path: root/FSF-2020/calculus-of-several-variables/geometry-of-planes-and-curves/tnb-frame-and-serret-frenet-formulae/file4_fs1.py
blob: c719a1dc14bfc184dda818b2f4b810c065615c5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from manimlib.imports import *

class fs1(ThreeDScene):
    def construct(self):


        self.set_camera_orientation(phi = 75*DEGREES, theta=45*DEGREES)
        dot1 = Dot(np.array([np.cos(-np.pi/3), np.sin(-np.pi/3), -0.4*np.pi/3]) + np.array([0,0.2,0]), radius = 0.16, color=RED)
        tgt1 = Arrow((0,0,0), (-2,-0.55,0), color = YELLOW).shift(dot1.get_center() + np.array([0.18,0.04,0]))
        nm1 = Arrow((0,0,0), (0.4,-2,0), color = BLUE).shift(dot1.get_center() + np.array([0,0.26,0])).shift(np.array([0.8,4.76,0])).rotate(-15*DEGREES).scale(0.8)
        bnm1 = Arrow((0,0,0), (0,2,0), color=GREEN_E).shift(2.1*RIGHT+2*DOWN)
        plane1 = Square(color = DARK_BROWN, fill_color = WHITE, fill_opacity=0.3).shift(dot1.get_center() + np.array([-0.4, -0.6, 0])).rotate(13*DEGREES).scale(1.2)
        point1 = VGroup(*[dot1, tgt1, plane1]).scale(0.8).shift(np.array([1,4.86,0])).rotate(-15*DEGREES)
        t = TextMobject(r'$T$', color = YELLOW).move_to(ORIGIN).shift(3.2*RIGHT + DOWN)
        n = TextMobject(r'$N$', color = BLUE).shift(DOWN + RIGHT)
        b = TextMobject(r'$B$', color = GREEN_E).next_to(bnm1, UP, buff = 0.1)
        text = VGroup(*[t, n, b])
        self.add_fixed_in_frame_mobjects(bnm1, text)
        self.play(FadeIn(point1), FadeIn(bnm1), FadeIn(text))
        self.wait()
        self.play(TransformFromCopy(tgt1, nm1, run_time = 2))
        self.wait(2)
        self.play(FadeOut(VGroup(*[bnm1, text, point1, nm1])))