Skip to content

Instantly share code, notes, and snippets.

@jaddoescad
Created March 9, 2019 23:42
Show Gist options
  • Save jaddoescad/5c829a992ab3d4bd024a74c368f2e806 to your computer and use it in GitHub Desktop.
Save jaddoescad/5c829a992ab3d4bd024a74c368f2e806 to your computer and use it in GitHub Desktop.
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))
@muhsinokcu
Copy link

thanks, i was looking the code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment