Skip to content

Instantly share code, notes, and snippets.

@jaddoescad
Created March 10, 2019 00:02
Show Gist options
  • Save jaddoescad/6b641c51d965e6d9c1ba265be65c7e43 to your computer and use it in GitHub Desktop.
Save jaddoescad/6b641c51d965e6d9c1ba265be65c7e43 to your computer and use it in GitHub Desktop.
Scale circle with manim
from big_ol_pile_of_manim_imports import *
# Animate shapes
class ScaleCircle(Scene):
def construct(self):
circle = Circle(radius=2, fill_color=YELLOW, fill_opacity=1)
self.play(GrowFromCenter(circle))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment