Skip to the content.

Manim collection

I have a collection of Manim codes here. Feel free to explore and reuse them all.

Below are some featured codes.

Exponential Sum

exponential_sum.py

exponential sum animation gif

Cool Effect

You can create text animations as seen here.

See the example below and find the corresponding code in cool_effect.py

cool effect animation gif

Lyric Video

It turns out you can make a lyric video! song.py

lyric video using Manim

Ignoring fancy animations, there’s one main trick here. time.perf_counter() is for compiler, not for animation. You have to jump forward to a specific timestamp using self.wait(timestamp - self.time).