https://github.com/tamimehsan/manim_ation
Educational animation using python U w U
https://github.com/tamimehsan/manim_ation
Last synced: 6 months ago
JSON representation
Educational animation using python U w U
- Host: GitHub
- URL: https://github.com/tamimehsan/manim_ation
- Owner: TamimEhsan
- Created: 2021-03-01T07:11:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-16T11:47:05.000Z (over 4 years ago)
- Last Synced: 2025-03-27T10:21:19.878Z (7 months ago)
- Language: Python
- Homepage:
- Size: 3.96 MB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Manimation
[Manim](https://github.com/3b1b/manim) is an engine for precise programatic animations, designed for creating explanatory math videos. The original work is done by Grant [3Blue1Brown](https://www.youtube.com/channel/UCYO_jab_esuFRV4b17AJtAw) Sanderson. But here I am using the [community edition](https://github.com/ManimCommunity/manim/) .
### Installation
Manim installation is pretty easy if done with Choco. It requires shit ton of dependencies and will take ages to figure our perfectly. So I'll suggest to follow the [Installation Guide](https://docs.manim.community/en/latest/installation.html) .
### Target
I'll try to create some tutorial and explanatory animation for our DS course.
Here is one simple example of manim and how cute it is```python
from manim import *class SquareToCircle(Scene):
def construct(self):
circle = Circle()
circle.set_fill(PINK, opacity=0.5)
square = Square()
square.flip(RIGHT)
square.rotate(-3 * TAU / 8)
self.play(ShowCreation(square))
self.play(Transform(square, circle))
self.play(FadeOut(square))
```
Here is another one
