Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jaddoescad/17a8489c9baf63146d4485de4e7e5804 to your computer and use it in GitHub Desktop.
Save jaddoescad/17a8489c9baf63146d4485de4e7e5804 to your computer and use it in GitHub Desktop.
draw circle in manim
class DrawCircle(Scene):
def construct(self):
circle = Circle(color=WHITE,radius=1)
self.play(ShowCreation(circle))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment