mirror of
https://github.com/3b1b/manim.git
synced 2025-07-31 22:13:30 +08:00
21 lines
390 B
Python
21 lines
390 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 BuildFromTheStart(Scene):
|
|
def construct(self):
|
|
self.add(text_mobject("Build from the start..."))
|
|
|