Esta página se muestra en inglés. Una traducción al español está en curso.
ScriptsMar 29, 2026·2 min de lectura

Manim — Mathematical Animation Engine

Community-maintained Python library for creating mathematical animations and explanatory videos. Used by 3Blue1Brown. 70,000+ GitHub stars.

Introducción

Manim is the animation engine behind 3Blue1Brown — the most popular math YouTube channel. It's a Python library for creating precise mathematical animations and explanatory videos programmatically. Define scenes in Python, and Manim renders them as high-quality video. 70,000+ GitHub stars, used by educators and content creators worldwide.

Best for: Math educators, technical explainer videos, data visualization animations Works with: Python 3.8+, LaTeX (optional for math notation) Setup time: 5 minutes


Key Features

  • Mathematical objects: Equations, graphs, number lines, geometric shapes, 3D surfaces
  • Smooth animations: Transform, FadeIn, Write, Create, MoveAlongPath, and dozens more
  • Camera control: Pan, zoom, rotate camera in 2D and 3D scenes
  • LaTeX rendering: Beautiful mathematical notation via LaTeX
  • Programmatic: Everything is Python code — version control, parameterize, automate

Example: Animated Graph

from manim import *

class SineCurve(Scene):
    def construct(self):
        axes = Axes(x_range=[-3, 3], y_range=[-1.5, 1.5])
        graph = axes.plot(lambda x: np.sin(x), color=BLUE)
        label = axes.get_graph_label(graph, label="\\sin(x)")
        self.play(Create(axes), Create(graph), Write(label))
        self.wait()

FAQ

Q: What is Manim? A: Manim is a Python library for creating mathematical animations programmatically, originally developed by 3Blue1Brown. The community edition (ManimCE) has 70,000+ GitHub stars.

Q: Is Manim free? A: Yes. Manim Community Edition is MIT-licensed and completely free.

Q: How do I install Manim? A: Run pip install manim. Optional: install LaTeX for math notation rendering.


🙏

Fuente y agradecimientos

Created by ManimCommunity. Licensed under MIT. manim — ⭐ 70,000+ Docs: docs.manim.community

Discusión

Inicia sesión para unirte a la discusión.
Aún no hay comentarios. Sé el primero en compartir tus ideas.

Activos relacionados