Skip to content

Instantly share code, notes, and snippets.

@jaddoescad
jaddoescad / draw_arc.py
Created March 9, 2019 23:42
Draw arc with manim
from big_ol_pile_of_manim_imports import *
# Move shapes
class DrawArc(Scene):
def construct(self):
angle = math.radians(180)
arc = Arc(radius=2,angle=angle)
self.play(ShowCreation(arc))