https://github.com/hemanta212/manim-bloomn
Manim fork with custom pi_creature and integration for chemistry animation (chanim/chemfig).
https://github.com/hemanta212/manim-bloomn
animation bloom bloomed bloomn chanim chemfig chemistry custom manim python
Last synced: 4 months ago
JSON representation
Manim fork with custom pi_creature and integration for chemistry animation (chanim/chemfig).
- Host: GitHub
- URL: https://github.com/hemanta212/manim-bloomn
- Owner: hemanta212
- License: other
- Created: 2020-12-09T11:19:34.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-12-09T14:52:08.000Z (over 4 years ago)
- Last Synced: 2025-01-12T18:14:17.672Z (5 months ago)
- Topics: animation, bloom, bloomed, bloomn, chanim, chemfig, chemistry, custom, manim, python
- Language: Python
- Homepage:
- Size: 16.1 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Manim-Bloomn
A manim fork incorporating customization of the library for work in bloom nepal animation videos
This fork adds
* A custom pi_creature svg.
* Integration with chanim (chemistry animation for manim)## Installation
The installation is same as original [manim repo](https://github.com/3b1b/manim).Incase you already have installed 3b1b/manim. Clone this repo, navigate to it and
```
$ python setup.py install
```## Chemfig/Chanim Usage
```
from manimlib.imports import *
class Test(Scene):
def construct(self)
water_mol = ChemObject("H_2O")
self.play(Write(water_mol))
```You can put any valid chemfig command inside ChemObject.
The additional chemistry related files are;- manimlib/chem_objects.py
- manimlib/compounds.pyView additional info in [chanim repo:](https://github.com/raghavg123/chanim)