Skip to main content

AnimaGeo

GeoGebra → Python → Manim → SVG / MP4

PyPI Tests License Python

AnimaGeo turns GeoGebra geometric constructions into high-quality figures and animations. It parses a .ggb file, rebuilds the dependency graph between elements, renders them through manim, and exports to static vector formats (SVG, PDF, EPS, TikZ, interactive JSXGraph) or animated video (MP4, GIF, WebM, PNG).

You can also build constructions directly in a small Python DSL — no GeoGebra file required — and animate them by keyframes or by driving free variables.

Triangle with altitude, right-angle marker and auto-placed labels — SVG exported from a .ggb file The same construction animated by a JSON keyframe timeline — the altitude and right-angle marker follow the moving vertex

One .ggb file, two commands: animageo triangle.ggb -o triangle.svg · animageo triangle.ggb -o anim.gif --keyframes kf.json

Features

  • Faithful GeoGebra import — points, lines, segments, rays, vectors, polygons, angles (incl. right-angle markers), circles, arcs, sectors, and first-class conics, explicit functions, and implicit curves, plus custom tool (macro) expansion. The DSL exposes 99 command factories backed by 433 type-specialized dispatch signatures.
  • Pixel-invariant styling — a JSON style system with layered defaults, per-type / per-name overlays, and a configurable GGB ImportPolicy.
  • Automatic label placement — an overlap-avoiding solver with static, keyframe, and per-frame dynamic modes.
  • Animation — reveal/hide elements, drive free variables with ValueTrackers, or render a JSON keyframe sequence. Fast DecimalNumber-backed value labels.
  • Multiple export targets — SVG/PDF/EPS (Cairo), native semantic TikZ for LaTeX, interactive JSXGraph (with a framework-agnostic web runtime), and MP4/GIF/WebM/PNG via manim.
  • AI-agent friendly — a self-sufficient usage guide ships in the package (animageo --ai-guide), plus compact construction summaries for LLM styling.

Installation

pip install --upgrade animageo

Requires Python 3.11+. Core dependencies (numpy, manim, pycairo, sympy, scipy) are installed automatically. The JSXGraph web runtime under web/ is a separate, optional JS package.

Command line

# SVG (default), 640×480 export canvas
animageo scene.ggb -o scene.svg

# Pick the format explicitly, or let the -o extension imply it
animageo scene.ggb -o figure.tex --standalone      # compilable TikZ
animageo scene.ggb -o board.html                   # interactive JSXGraph
animageo scene.ggb -o anim.mp4 --keyframes kf.json # animation
animageo scene.ggb -o scene.svg -s style.json --export-size 1920 1080

Output format is taken from --format/-f, otherwise inferred from the -o extension, otherwise SVG. Static vector formats: svg, pdf, eps, tikz, jsxgraph. Render formats (manim): png, gif, mp4, webm, mov.

usage: animageo [-h] [--ai-guide] [-o OUTPUT]
                [-f {svg,pdf,eps,tikz,jsxgraph,png,gif,mp4,webm,mov}]
                [--standalone] [--dpi DPI] [--keyframes KEYFRAMES] [--fps FPS]
                [--transparent] [--quality {l,m,h,p,k}]
                [--reference-size W H] [--export-size W H]
                [--fit {contain,cover,width,height,none,manual}]
                [--source-rect {source_view,ggb_view,rendered_bounds}]
                [--export-scale SCALE] [--anchor ...] [--offset X Y]
                [--bounds-padding PAD] [--infinite-policy {clip,ignore}]
                [-s STYLE] [--log-level LEVEL] [-v] [-q]
                [ggbfile]

Run animageo --help for the full flag reference, or animageo --ai-guide to print the packaged AI usage guide.

Using in Python

Write a scene.py:

from animageo import *

class TestScene(AnimaGeoScene):
    def construct(self):
        # Load a GeoGebra construction; `style` provides visual defaults,
        # `export` chooses the physical output size.
        self.loadGGB(
            'scene.ggb',
            style='default.json',
            export={'size': {'width': 800, 'height': 'auto'}},
        )

        # Extend / edit the construction with the Python DSL (additive).
        self.loadCode('scene_code.py')

        # Restyle elements by their GeoGebra / DSL names.
        self.element('a').style['stroke'] = self.style.col
        self.element('A_1').style['fill'] = self.style.col_accent

        # Export a static image.
        self.exportSVG('scene.svg')
        # ...or self.exportTikZ('scene.tex') / self.exportJSXGraph('board.html')

        # Animate: reveal geometry and drive a free variable.
        x = self.addVar('x', 5)
        self.HideAll()
        self.playShow(['A', 'B', 'a'])
        self.addUpdater(x)
        self.play(x.animate.set_value(10), run_time=3)
        self.clearUpdater(x)

and a scene_code.py (the construction DSL):

from animageo.dsl import *   # IDE-only; dropped by the DSL transform at runtime

A = Point(x, 0)
B = Intersect(b, c)
a = Segment(A, B)

Render the animation with manim:

manim 'scene.py' TestScene

For DSL-only scenes (no .ggb) frame the view with scene.fitView(width, height, padding=…). See docs/python_dsl.md and docs/api.md.

Keyframe animation

get_independent_elements() reports every animatable (free) element; feed a JSON/Python keyframe sequence to play_keyframes(). Use "version": 2 for the current timeline format:

scene.loadGGB('scene.ggb', style='style.json', export={'size': {'width': 800, 'height': 600}})
independents = scene.get_independent_elements()   # send to a UI, or author by hand
scene.play_keyframes({
    "version": 2,
    "keyframes": [
        {"t": 0, "values": {"A": [0, 0], "x": 35, "D": {"tparam": 0.0}}},
        {"t": 2, "values": {"A": [4, 4], "x": 110},
         "visible": {"line1": True},
         "styles": {"line1": {"stroke": "#d05456", "stroke_width_px": 4}},
         "enter": {"line1": "create"},
         "events": [{"effect": "indicate", "targets": ["A"], "at": 0.4, "duration": 0.6}],
         "easing": "smooth"},
        {"t": 4, "values": {"A": [0, 0], "x": 35}}
    ]
})

Keyframes v2 supports geometry/value tracks, style tracks, absolute visibility with entrance/exit effects, 17 easing names, @camera pan/zoom, one-shot emphasis events, reveal_construction(), and apply_keyframes_at() for static playhead previews. See docs/keyframes.md.

Automatic label placement

scene.loadGGB('scene.ggb', style='style.json', export={'size': {'width': 800, 'height': 600}})
scene.autoPlaceLabels()          # static one-shot; pass dynamic=True for animations
scene.exportSVG('scene.svg')

Placement is opt-in per style file (overlay.label_placement); see the recommended preset and full parameter reference in docs/styles.md.

AI-agent usage

If you (or a tool you are driving) are an AI agent, read the self-sufficient guide shipped with the package before writing any code:

python -m animageo --ai-guide          # prints the full guide to stdout

It is also in the source tree at animageo/AI_USAGE_PROMPT.md. Written for an agent with zero prior knowledge of animageo, it covers environment setup, canonical script skeletons for static SVG and MP4 animation, the viewport / fitView recipe for DSL-built scenes, verified DSL factory signatures, construction-correctness rules, marks and labels, the style JSON system, the animation reference, and a verification protocol. Its recipes were validated end-to-end by independent AI agents that had no other documentation.

Style system (JSON)

Styles are JSON files with five top-level sections:

  • presets — named semantic constants (colours, sizes, thicknesses).
  • defaults — per-type baselines, usually referencing presets.
  • overlay — post-import stylization by type / name, plus automation (angle-radius scaling, label placement).
  • rendering — render / export options (background, line caps, …).
  • import — GGB colour/size remapping + an embedded ImportPolicy.

Every *_px value is in pixels and stays visually invariant across canvas sizes. Minimal example:

{
    "name": "default",
    "presets": {
        "color": { "main": "#2581b5", "accent": "#ef60ab", "background": "#ffffff" },
        "point_size": { "main": 7 },
        "line_width": { "main": 2 }
    },
    "defaults": {
        "point":   { "size_px": "point_size.main", "fill": "color.main" },
        "segment": { "stroke_width_px": "line_width.main" }
    },
    "rendering": { "background": "color.background", "line_cap": "round" }
}

The full style reference — layers, every key, the ImportPolicy cookbook, and the label-placement preset — lives in docs/styles.md.

Examples

Documentation

Contributions are welcome — see CONTRIBUTING.md. For AI agents and LLM tooling: llms.txt.

License

Apache-2.0 — see LICENSE and NOTICE. Homepage: https://animageo.ru/

Release files for animageo 1.7.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for animageo 1.7.4
File Size Uploaded
animageo-1.7.4.tar.gz 380.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for animageo 1.7.4
File Interpreter ABI Platform
animageo-1.7.4-py3-none-any.whl Python 3 none any Details

Total release size: 752.9 kB

Release files / animageo-1.7.4.tar.gz

Download URL animageo-1.7.4.tar.gz
Size 380.0 kB
Tags Source
SHA-256 checksum
How to use checksums
7c44595ca517e874f90aa5f74786be5c8d0bfa875aace49780f380eab020a22f
BLAKE2b-256 checksum
How to use checksums
3767043fc78c474f46d62f4d9db546c8a3798a57cb686ad9c288a8249bd506d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / animageo-1.7.4-py3-none-any.whl

Download URL animageo-1.7.4-py3-none-any.whl
Size 372.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
1beb827d0932869fb91707847c617d0a4b2160377694174a9915c9a34afea6fb
BLAKE2b-256 checksum
How to use checksums
34a66e0d9014bd1299728127fc428140a437c8c64f25298df8e5b2a53f0d45d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release history Release notifications | RSS feed

1.7.9

2 release files

1.7.8

2 release files

1.7.7

2 release files

1.7.6

2 release files

1.7.5

2 release files

This release

1.7.4 This release

2 release files

1.7.3

2 release files

1.7.2

2 release files

1.7.1

2 release files

1.7.0

2 release files

1.6.5

2 release files

1.6.4

2 release files

1.6.3

2 release files

1.6.2

2 release files

1.6.0

2 release files

1.5.0

2 release files

1.4.6

2 release files

1.4.5

2 release files

1.4.4

2 release files

1.4.3

2 release files

1.4.2

2 release files

1.4.1

2 release files

1.4.0

2 release files

1.3.4

2 release files

1.3.3

2 release files

1.3.2

2 release files

1.3.1

2 release files

1.3.0

2 release files

1.2.6

2 release files

1.2.5

2 release files

1.2.4

2 release files

1.2.3

2 release files

1.2.2

2 release files

1.2.1

2 release files

1.2.0

2 release files

1.1.1

2 release files

1.1.0

2 release files

1.0.2

2 release files

1.0.1

2 release files

1.0.0

2 release files

0.1.9

2 release files

0.1.8

2 release files

0.1.7

2 release files

0.1.6

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page