mirror of
https://github.com/3b1b/manim.git
synced 2025-09-01 00:48:45 +00:00
rearranged imports bc of GraphScene name conflict
This commit is contained in:
parent
5f2aa31fc3
commit
e0ff0f2a9f
2 changed files with 12 additions and 9 deletions
|
@ -46,6 +46,7 @@ from mobject.numbers import *
|
|||
from mobject.probability import *
|
||||
from mobject.shape_matchers import *
|
||||
from mobject.svg.brace import *
|
||||
from mobject.svg.drawings import *
|
||||
from mobject.svg.svg_mobject import *
|
||||
from mobject.svg.tex_mobject import *
|
||||
from mobject.three_dimensions import *
|
||||
|
@ -59,15 +60,6 @@ from for_3b1b_videos.pi_creature import *
|
|||
from for_3b1b_videos.pi_creature_animations import *
|
||||
from for_3b1b_videos.pi_creature_scene import *
|
||||
|
||||
from scene.graph_scene import *
|
||||
from scene.moving_camera_scene import *
|
||||
from scene.reconfigurable_scene import *
|
||||
from scene.scene import *
|
||||
from scene.scene_from_video import *
|
||||
from scene.three_d_scene import *
|
||||
from scene.vector_space_scene import *
|
||||
from scene.zoomed_scene import *
|
||||
|
||||
from once_useful_constructs.arithmetic import *
|
||||
from once_useful_constructs.combinatorics import *
|
||||
from once_useful_constructs.complex_transformation_scene import *
|
||||
|
@ -76,6 +68,16 @@ from once_useful_constructs.fractals import *
|
|||
from once_useful_constructs.graph_theory import *
|
||||
from once_useful_constructs.light import *
|
||||
|
||||
from scene.graph_scene import *
|
||||
from scene.moving_camera_scene import *
|
||||
from scene.reconfigurable_scene import *
|
||||
from scene.scene import *
|
||||
from scene.sample_space_scene import *
|
||||
from scene.graph_scene import *
|
||||
from scene.scene_from_video import *
|
||||
from scene.three_d_scene import *
|
||||
from scene.vector_space_scene import *
|
||||
from scene.zoomed_scene import *
|
||||
|
||||
from utils.bezier import *
|
||||
from utils.color import *
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
from __future__ import absolute_import
|
||||
|
||||
from constants import *
|
||||
import itertools as it
|
||||
|
||||
from scene.scene import Scene
|
||||
from animation.creation import Write
|
||||
|
|
Loading…
Add table
Reference in a new issue