Skip to content

Instantly share code, notes, and snippets.

@jaddoescad
Last active March 9, 2019 23:05
Show Gist options
  • Save jaddoescad/28975c1d56062fc71d58c318b3fea434 to your computer and use it in GitHub Desktop.
Save jaddoescad/28975c1d56062fc71d58c318b3fea434 to your computer and use it in GitHub Desktop.
draw circle in manim
from big_ol_pile_of_manim_imports import *
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