Metadata-Version: 2.1
Name: pyrusgeom
Version: 0.1.2
Summary: A package for handling geometry and math in SS2D
Project-URL: Homepage, https://github.com/Cyrus2D/PyrusGeom
Project-URL: Bug Tracker, https://github.com/Cyrus2D/PyrusGeom/issues
Author-email: Cyrus 2D Team <info@cyrus2d.com>
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# PyrusGeom
## Geom2D | Soccer Math

PyrusGeom is a Python library for dealing with math and geometry in SS2D.


# Installation

Use pip or build to install PyrusGeom.  
x.x.x = release version  
*test pypi* release:
```Bash
pip install -i https://test.pypi.org/simple/ pyrusgeom==x.x.x
```
*pypi* release:
```Bash
pip install pyrusgeom==x.x.x
```
download and use the released tar file:
```Bash
python -m pip install pyrusgeom-x.x.x.tar.gz
```
or use the git repository
```sh
git clone https://github.com/Cyrus2D/PyrusGeom.git
python -m build
python -m pip install dist/pyrusgeom-x.x.x.tar.gz
```

# Usage

for importing you can use this options

import the desired class
```python
from pyrusgeom.vector_2d import Vector2D # for Vector2D
from pyrusgeom.polygon_2d import Polygon2D # for Polygon2D
```
Or use a Wildcard import like
```python
from pyrusgeom.soccer_math import *
from pyrusgeom.geom_2d import *
```

Examples

```python
vec_1 = Vector2D() # create Vector with default value.
vec_2 = Vector2D(20,30) # create Vector with 20 , 30 value directly.
line_1 = Line2D(vec1,vec2) # create line from 2 points.
circle_1 = Circle2D(3,3,5) # create circle with center point and radius value.
print(circle_1.intersection(line_1)) #  calculate the intersection with straight line.
```

# Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## TODO
triangulation | 
delaunay_triangulation | 
composite_region_2d | 
voronoi_diagram | 
circluar import | 
remaining eq,hash,reverse |
etc
