Metadata-Version: 2.1
Name: geodynamic
Version: 0.0.5
Summary: Geometric tools for parsing GeoGebra construction, proccess with manim animation and export to SVG
Home-page: https://gitlab.mathem.ru/
Author: ivaleo
Author-email: ivaleotion@gmail.com
Keywords: geometry dynamic geogebra manim animation svg python
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: requests>=2.25.1
Requires-Dist: numpy>=1.26.0
Requires-Dist: manim>=0.18.0
Requires-Dist: pycairo>=1.0.0

# GeoDynamic

## Installation

```bash
pip install --upgrade geodynamic
```

## Using

1. Preparing code `test.py`:

```python
from geodynamic.manim_dynamic import *

class TestScene(GeoDynamic):
    def construct(self):       
        self.loadGeoGebra('test.ggb', scheme = 'pandora', px_size = [400, 300])    
        self.exportSVG('test_ggb.svg')
```

2. Run compilation:

```bash
manim 'test.py' TestScene
```
