Skip to content

Commit d28bff1

Browse files
author
Rohit Malhotra
authored
Merge pull request #4 from TravorLZH/master
Fix #2 and a typo
2 parents 1e1f9bf + 32ea94d commit d28bff1

File tree

7 files changed

+9
-6
lines changed

7 files changed

+9
-6
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
__pycache__/
2+
media/
3+
files/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Some additional installations are mentioned below
5353
sudo apt-get install libcairo2-dev libjpeg-dev libgif-dev
5454
sudo apt install texlive-latex-base texlive-full texlive-fonts-extra
5555
```
56-
Phew! This will be the last isntallation for additional python modules. Run this in the terminal
56+
Phew! This will be the last installation for additional python modules. Run this in the terminal
5757
``` bash
5858
python3 -m pip install -r requirements.txt
5959
```

code/basics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from big_ol_pile_of_manim_imports import *
1+
from manimlib.imports import *
22

33
class Shapes(Scene):
44
def construct(self):

code/graphing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from big_ol_pile_of_manim_imports import *
1+
from manimlib.imports import *
22
import math
33

44
class Graphing(GraphScene):

code/mathEq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from big_ol_pile_of_manim_imports import *
1+
from manimlib.imports import *
22

33
class Equations(Scene):
44
def construct(self):

code/shapes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from big_ol_pile_of_manim_imports import *
1+
from manimlib.imports import *
22
from math import cos, sin, pi
33

44
class Shapes(Scene):

code/text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from big_ol_pile_of_manim_imports import *
1+
from manimlib.imports import *
22

33
class makeText(Scene):
44
def construct(self):

0 commit comments

Comments
 (0)