mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
15 lines
No EOL
250 B
Python
15 lines
No EOL
250 B
Python
import numpy as np
|
|
import itertools as it
|
|
|
|
from scene import Scene
|
|
|
|
from mobject import *
|
|
from animation import *
|
|
from region import *
|
|
from constants import *
|
|
from helpers import *
|
|
|
|
|
|
class NumberLineScene(Scene):
|
|
def construct(self):
|
|
pass |