pyclipr
pyclipr copied to clipboard
Python Polygon Clipping and Offsetting based on Clipper2 Library
Thanks so much for this module. I noticed the type stubs were out of date, in particular the FillType -> FillRule change was giving me problems. I generated new ones...
Explore the move for the python bindings to [nanobind](https://nanobind.readthedocs.io/en/latest/) as the modern equivalent and successor to pybind11
Use hatch build system alongside scikit-build-core to generate the source distribution and binary wheels within a CI pipeline on github.
For the prevention of name pollution of enums when importing `pyclipr` and preventing collision of some enum values, , the enumerations for `EndType` and `JoinType` used in offsetting operations are...
Hi, I am having issue with polygons merging. If a create a bunch of polygons as: ```python # Make a bunch of rectangles tot = [] tot.append(np.array([[ -5., -100.], [...
The below code outputs a path containing the coordinates [(4., 4.), (2., 4.), (2., 2.), (4., 2)]. Not sure if I'm overlooking something obvious, but if Clipper.addPath() assumes the added...
Some changes to build locally just using "pip" on an M1 mac, and then maybe also help with the github action, but I don't know if it will work. At...
Keep variable types / function signatures updated. Also, thanks for taking my advice in the previous PR.
Hi, I'm currently working on a python repository about graphics rendering, and I'd like to include Clipper2 as a third party dependency. I encountered an error when running `pip install...