Skip to content

Instantly share code, notes, and snippets.

@jaddoescad
Created March 9, 2019 23:15
Show Gist options
  • Save jaddoescad/14c505998747355424aa0202af156c02 to your computer and use it in GitHub Desktop.
Save jaddoescad/14c505998747355424aa0202af156c02 to your computer and use it in GitHub Desktop.
Draw rectangle with manim
from big_ol_pile_of_manim_imports import *
class DrawRectangle(Scene):
def construct(self):
rect = Rectangle(height=3,width=4)
self.play(ShowCreation(rect))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment