Short introduction to Manim: Difference between revisions
From wikiluntti
Line 35: | Line 35: | ||
https://github.com/markkuleino/manim/blob/main/bezier.py | https://github.com/markkuleino/manim/blob/main/bezier.py | ||
== Lines == | |||
https://github.com/markkuleino/manim/blob/main/FLL_CC2_m13b.py |
Revision as of 21:14, 9 November 2021
Introduction
Some short manim scrips to generate easy visualizations.
manim -pql bez2.py manim -pqh bez2.py BezierSplineExample --format=png f: open the directory/ folder i: generate gif file p: play qm, qh, qk: quality (low, high, 4k) qh: high quality s: save last frame t: transparent background
config.background_color = WHITE
Add a background image
bg_image = ImageMobject("bg_P5.png") self.add( bg_image )
Bezier curve
Animated bezier curve with two points:
https://github.com/markkuleino/manim/blob/main/bezier.py
Lines
https://github.com/markkuleino/manim/blob/main/FLL_CC2_m13b.py