This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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)) |