Skip to content

Instantly share code, notes, and snippets.

@jaddoescad
Created March 9, 2019 23:08
Show Gist options
  • Save jaddoescad/94c86b1d9eba577616ea4d58e9ced2ac to your computer and use it in GitHub Desktop.
Save jaddoescad/94c86b1d9eba577616ea4d58e9ced2ac to your computer and use it in GitHub Desktop.
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))
@Muhammadyusuf96
Copy link

replace ShowCreation with Create

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment