We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SciKit geometry is a wrapper around the C++ CGAL product:
https://scikit-geometry.github.io/scikit-geometry/index.html
It should be robust and fast code, with a lot of features.
But it's also a Framework, build ot lots of Classes for POints, etc, etc, so could be pretty heavyweight for the simple stuff. However:
""" You may also use lists of coordinates or numpy arrays to construct polygons:
sg.Polygon([[0, 0], [0, 3], [3, 3]]) """ so maybe the overhead is not too much? This should be checked out.
sg.Polygon([[0, 0], [0, 3], [3, 3]])
and it does provide a bunch of nifty features, and is available on conda-forge.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
SciKit geometry is a wrapper around the C++ CGAL product:
https://scikit-geometry.github.io/scikit-geometry/index.html
It should be robust and fast code, with a lot of features.
But it's also a Framework, build ot lots of Classes for POints, etc, etc, so could be pretty heavyweight for the simple stuff. However:
"""
You may also use lists of coordinates or numpy arrays to construct polygons:
sg.Polygon([[0, 0], [0, 3], [3, 3]])
"""
so maybe the overhead is not too much? This should be checked out.
and it does provide a bunch of nifty features, and is available on conda-forge.
The text was updated successfully, but these errors were encountered: