mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
23 lines
No EOL
441 B
Python
23 lines
No EOL
441 B
Python
#!/usr/bin/env python
|
|
|
|
import numpy as np
|
|
import itertools as it
|
|
from copy import deepcopy
|
|
import sys
|
|
|
|
|
|
from animation import *
|
|
from mobject import *
|
|
from constants import *
|
|
from region import *
|
|
from scene import Scene
|
|
from script_wrapper import command_line_create_scene
|
|
|
|
|
|
class SampleScene(Scene):
|
|
def construct(self):
|
|
three = tex_mobject("3")
|
|
self.add(three)
|
|
|
|
if __name__ == "__main__":
|
|
command_line_create_scene() |