Tools for using GeoGebra construction, processing with Manim animation and exporting to SVG and MP4
Project description
AnimaGeo
Installation
pip install --upgrade animageo
Using in terminal
animageo test.ggb -s default.json -px 240 auto
Description:
usage: animageo ggbfile [-o OUTPUT] [-px PX PX] [-s STYLE] [-d DEBUG]
positional arguments:
ggbfile GeoGebra file to parse
options:
-o OUTPUT, --output OUTPUT SVG file to export into
-px PX PX image width and height in px (values: num or auto)
-s STYLE, --style STYLE JSON file with style definitions
-d DEBUG, --debug DEBUG print options
-h, --help show this help message and exit
Using in code
- Preparing code
test.py:
from animageo import *
class TestScene(AnimaGeoScene):
def construct(self):
self.loadGeoGebra('test.ggb', style_json_file = 'default.json', px_size = [400, 'auto'])
self.exportSVG('test.svg')
- Run compilation:
manim 'test.py' TestScene
Style definitions in JSON
Here is an example of JSON-file for styling images:
{
"name": "default",
"version": 0.1,
"style": {
"dot": {
"main": 7,
"bold": 9,
"aux": 5
},
"line": {
"main": 2,
"bold": 2.5,
"aux": 1.5
},
"angle": {
"line": 1,
"r_default": 20,
"r_shift": 3,
"r_right": 14
},
"strich": {
"width": 1,
"len": 12,
"shift": 4
},
"arrow": {
"width": 7.5,
"length": 10.5
},
"color": {
"black": "#000000",
"main": "#2581b5",
"light": "#bef3fc",
"aux": "#000000",
"acc": "#ef60ab",
"acc_light": "#ffd2ee"
},
"font": {
"size": 17
}
},
"technic": {
"line_caps": "round",
"right_angle_joint": "miter",
"polygon_boundary_layer": "top",
"points_display": "only_labels",
"crop_padding": 4,
"scale_export": 0.75
},
"ggb_export": {
"colors": {
"#1565c0": "main",
"#1565c0 0.1": "main 0",
"#d32f2f": "acc",
"#d32f2f 0.1": "acc_light 1",
"#616161": "aux",
"#000000 0.6": "main",
"#000000 0.1": "light 1",
"#1565c0 0": "white 1",
"#d32f2f 0": "white 1"
},
"dot": {
"5": "main"
},
"line": {
"5": "main",
"3": "aux"
}
}
}
Description:
technic:
round - закруглять концы всех отрезков butt - обрезать концы всех отрезков square - концы отрезков завершаются квадратами
"line_caps": "round" | "butt" | "square",
round - скруглять соединение уголка в отображении отметки прямого угла
"right_angle_joint": "round" | "bevel" | "miter"
top - отображать границу многоугольников поверх остальных линий (Важно! это касается именно дополнительных отрезков-сторон, создаваемых автоматически в GeoGebra)
"polygon_boundary_layer": "top" | "auto"
only_labels - скрывать все точки (оставляя их надписи, если они есть) only_points - скрывать надписи (оставляя точки, если они видимые)
"points_display": "only_labels" | "only_points" | "auto"
обрезать картинку по содержимому, оставляя поле 4px
"crop_padding": 4
вспомогательный коэффициент растяжения/сжатия всех параметров при экспорте в svg (должен влиять и на размеры и на толщины, стили…)
"scale_export": 0.75, 1
ggb_export:
конвертирует конкретные цвета из GeoGebra в другие цвета c возможным параметром прозрачности (цвет либо конкретный, либо по имени из стилевика)
"colors": {}
конвертирует определенную ширину линии из GeoGebra в другую заданную ширину (величина либо конкретная, либо по имени из стилевика)
"line": {}
конвертирует определенный размер точек из GeoGebra в другой заданный размер (величина либо конкретная, либо по имени из стилевика)
"dot": {}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file animageo-0.1.2.tar.gz.
File metadata
- Download URL: animageo-0.1.2.tar.gz
- Upload date:
- Size: 44.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
396f54d5fcc69ee04442895788b1553dbceffe35c4dbc4c294e591a3bfab2499
|
|
| MD5 |
8bcc1fad335eed178f786c66587cae52
|
|
| BLAKE2b-256 |
cdf5731711964bae180b81bf2873e5b06751083ed6bbf6db175a31b67379a93e
|
File details
Details for the file animageo-0.1.2-py3-none-any.whl.
File metadata
- Download URL: animageo-0.1.2-py3-none-any.whl
- Upload date:
- Size: 82.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d2f86124fe29c4e22bca7f5c033ae178503453e14b147c7f7a0a3012b1f5467
|
|
| MD5 |
50005e35fd390c35f28d2086b43d05ce
|
|
| BLAKE2b-256 |
222c306ef05a437415a6a396cd5a18febcbc88c90cd8cad1e7b50d074fb46df4
|