manim_express
Requirements
manim_kunyuan >= 0.23
sparrow_tool
fake_headers
requests
# helium
# pyperclip
Install
pip install manim_express
The above steps will automatically install packages manim_express and manimlib(my fork version) for you. Then you can code with them anywhere.
Quick start
-
Render an animation: 3b1b:SquareToCircle
from manimlib import * from manim_express import EagerModeScene scene = EagerModeScene() circle = Circle() circle.set_fill(BLUE, opacity=0.5) circle.set_stroke(BLUE_E, width=4) square = Square() scene.play(ShowCreation(square)) scene.play(ReplacementTransform(square, circle)) scene.hold_on()
Operating graphics:
- hold down the
dkey on the keyboard and move the mouse to change the three-dimensional perspective. - hold down the
skey on the keyboard and move the mouse to pan the screen - hold down the
zon the keyboard while scrolling the middle mouse button to zoom the screen - scroll the middle mouse button to move the screen up and down
- reset camera view by pressing
r - close the window and exit the program by pressing
q
- hold down the
-
manim_expressvsMatplotlib:
In some cases, you may need to install LaTeX to rendertexfonts.
Fortunately, online latex compilation option is available. Just setSceneArgs.use_online_tex=Truefrom manimlib import * from manim_express import * import numpy as np SceneArgs.use_online_tex = True # Use online latex compiler theta = np.linspace(0, 2*np.pi, 200) x = np.cos(theta) y = np.sin(theta) # matplotlib # import matplotlib.pyplot as plt # plt.plot(x, y, color='green', linewidth=2) # plt.axis("equal") # plt.show() # manim_express scene = EagerModeScene() scene.plot(x, y, color=GREEN, width=2, scale_ratio=1) scene.show_plot() scene.hold_on()
Resources
-
Wiki
https://flyingframes.readthedocs.io/en/latest/index.html https://3b1b.github.io/manim/ -
3B1B videos:
https://github.com/3b1b/videos
Examples
- GOA model
Release files for manim-express 0.3.8
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| manim_express-0.3.8.tar.gz | 35.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| manim_express-0.3.8-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 76.1 kB
Release files / manim_express-0.3.8.tar.gz
| Download URL | manim_express-0.3.8.tar.gz |
|---|---|
| Size | 35.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
0fb9827a6e270a9f5eeca79ce79c160bda2cf4b9f717a979c3968bff9ed4ba2e
|
|
BLAKE2b-256 checksum How to use checksums |
82964bb817daf8d6882484eca9d6f52e3917da09887ad11e87b08492d15be441
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5
|
Release files / manim_express-0.3.8-py3-none-any.whl
| Download URL | manim_express-0.3.8-py3-none-any.whl |
|---|---|
| Size | 40.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
91cd8c77b32a2ed4d3b3c0ea3301cef2c9067cf9c078a1b77c54b340872fb44b
|
|
BLAKE2b-256 checksum How to use checksums |
3252cc0198a38fe6f76321da847a183082ebd4b4e4d3c538f55e2e8cff4077f0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.5
|