You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
496 B
16 lines
496 B
from manim import *
|
|
|
|
|
|
class BraceAnnotation(Scene):
|
|
def construct(self):
|
|
dot = Dot([-2, -1, 0])
|
|
dot2 = Dot([2, 1, 0])
|
|
line = Line(dot.get_center(), dot2.get_center()).set_color(ORANGE)
|
|
b1 = Brace(line)
|
|
b1text = b1.get_text("Horizontal distance")
|
|
b2 = Brace(
|
|
line, direction=line.copy().rotate(
|
|
PI / 2).get_unit_vector())
|
|
b2text = b2.get_tex("x-x_1")
|
|
self.add(line, dot, dot2, b1, b2, b1text, b2text)
|