Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.31 KB

File metadata and controls

37 lines (26 loc) · 1.31 KB

Euler - LaTex Derivation Renderer

Euler

Python Python

An animation toolkit built on top of Manim

Please note that because euler is built on top of manim, please make sure you have a proper manim installation

Euler is a tool for rendering latex equations from a file line by line into a beautiful Manim animations

x^2 + y^2 = r^2 |
\frac{x^2}{r^2} + \frac{y^2}{r^2} = 1 | Divide by $r^2$
\left( \frac{x}{r} \right) ^2 + \left( \frac{y}{r} \right) ^2   = 1 | $\frac{x}{r} = \cos(\theta)$ and $\frac{y}{r} = \sin(\theta)$
\left( \cos\theta ) ^2 + \left( \sin\theta \right) ^2   = 1 |
\cos^2\theta + \sin^2\theta = 1 | 

Rendered Scene

The topmost equation will be rendered and then transformed into the succeding lines.

Current use cases are mostly for rendering equation derivations, more features are coming soon (hopefully)

Todos

  • Basic proof of concept
  • A cli app for rendering
  • More advanced positioning systems
  • Publish to pypi