Skip to content

Instantly share code, notes, and snippets.

View SixBeeps's full-sized avatar
🍎
windows

Brandon Lee SixBeeps

🍎
windows
View GitHub Profile
@jaddoescad
jaddoescad / draw_line.py
Created March 9, 2019 23:08
draw line in manim
from big_ol_pile_of_manim_imports import *
class DrawLine(Scene):
def construct(self):
START = (0,0,0)
END = (4,0,0)
line = Line(START,END);
self.play(ShowCreation(line))