Metadata-Version: 2.4
Name: pypolypart
Version: 0.1.0
Summary: Python bindings for CGAL 2D Polygon Partitioning
Author: Diego Hernández Estrada
License-Expression: GPL-3.0-or-later
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: C++
Classifier: Operating System :: POSIX :: Linux
Project-URL: Homepage, https://github.com/D-i3g0-H/pypolypart
Project-URL: Repository, https://github.com/D-i3g0-H/pypolypart
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# pypolypart

Python bindings for CGAL 2D Polygon Partitioning.

## Features

- `optimal_convex_partition_2(...)`
- Returns a list of convex polygons

## Install

```bash
pip install pypolypart
```

## Example
```Python
from pypolypart import optimal_convex_partition2
def main() -> None:
    polygon = [
        (391, 374),
        (240, 431),
        (252, 340),
        (374, 320),
        (289, 214),
        (134, 390),
        (68, 186),
        (154, 259),
        (161, 107),
        (435, 108),
        (208, 148),
        (295, 160),
        (421, 212),
        (441, 303),
    ]

    parts = optimal_convex_partition_2(polygon)

    print("Input polygon:")
    print(polygon)
    print()

    print(f"Number of convex pieces: {len(parts)}")
    for idx, poly in enumerate(parts, start=1):
        print(f"Convex part {idx}:")
        for pt in poly:
            print(f"  {pt}")
        print()


if __name__ == "__main__":
    main()
```

## Requirements
- Linux
- Python 3.12+
- CGAL runtime/build dependencies as documented

## License

This project is licensed under the GNU General Public License v3.0 or later (GPL-3.0-or-later).

This package depends on CGAL's Polygon Partitioning package, which is licensed under the GPL.