-
Notifications
You must be signed in to change notification settings - Fork 7
/
README
17 lines (13 loc) · 921 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Polygon is a python package that handles polygonal shapes in 2D. It contains
Python bindings for gpc, the excellent General Polygon Clipping Library by
Alan Murta and some extensions written in C and pure Python. With Polygon you
may handle complex polygonal shapes in Python in a very intuitive way. Polygons
are simple Python objects, clipping operations are bound to standard operators
like +, -, \|, & and ^. TriStrips can be constructed from Polygons with a
single statement. Functions to compute the area, center point, convex hull,
point containment and much more are included. This package was already used to
process shapes with more than one million points!
Polygon3 works with Python 3.x, Polygon2 with Python 2.x.
Homepage: http://www.j-raedler.de/projects/polygon/
Development/Downloads: https://github.com/jraedler/Polygon3
For more information please look at Polygon.[txt,pdf] in the folder doc.