@@ -94,7 +94,7 @@ I recommend to look at it later, and start with the tutorial.
9494Finally we can start. In this tutorial, we will learn by doing.
9595### Basics
9696``` python
97- from big_ol_pile_of_manim_imports import *
97+ from manimlib.imports import *
9898
9999class Shapes (Scene ):
100100 def construct (self ):
@@ -128,7 +128,7 @@ We will break this into parts:
128128### Shapes
129129
130130``` python
131- from big_ol_pile_of_manim_imports import *
131+ from manimlib.imports import *
132132from math import cos, sin, pi
133133
134134class Shapes (Scene ):
@@ -213,7 +213,7 @@ There are other bases classes we will explore for making Graphs, 3D Scenes,etc.
213213### Text
214214
215215``` python
216- from big_ol_pile_of_manim_imports import *
216+ from manimlib.imports import *
217217
218218class makeText (Scene ):
219219 def construct (self ):
@@ -254,7 +254,7 @@ TextMobjects will be used later on to write good looking math equations.
254254
255255``` python
256256
257- from big_ol_pile_of_manim_imports import *
257+ from manimlib.imports import *
258258
259259class Equations (Scene ):
260260 def construct (self ):
@@ -354,7 +354,7 @@ second_eq = ["$J(\\theta_{0}, \\theta_{1})$", "=", "$\\frac{1}{2m}$", "$\\sum\\l
354354### Graphing
355355
356356``` python
357- from big_ol_pile_of_manim_imports import *
357+ from manimlib.imports import *
358358import math
359359
360360class Graphing (GraphScene ):
@@ -446,7 +446,7 @@ CONFIG = {
446446### 3D Graphing
447447
448448``` python
449- from big_ol_pile_of_manim_imports import *
449+ from manimlib.imports import *
450450
451451class ThreedSurface (ParametricSurface ):
452452
@@ -496,7 +496,7 @@ A continuation of this tutorial will follow to explain how the camera works. For
496496Manim has a mobject made for images. You can resise them, invert their colors, etc by using Manim methods.
497497
498498``` python
499- from big_ol_pile_of_manim_imports import *
499+ from manimlib.imports import *
500500
501501class Images (Scene ):
502502 def construct (self ):
@@ -512,7 +512,7 @@ class Images(Scene):
512512Alternatively, you could load the image using OpenCV or PIL, and then display the image using Manim.
513513
514514``` python
515- from big_ol_pile_of_manim_imports import *
515+ from manimlib.imports import *
516516import cv2
517517
518518class Images (Scene ):
0 commit comments