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
This is less clear-cut than #24, but I'm still getting crashes with some fairly benign-looking patterns:
poly_point_isect.isect_polygon([[0. , 0. ], [1. , 0. ], [0. , 1. ], [0. , 0. ], [0.5, 0. ], [1. , 1. ]]) # crashes
The following crash when using np.float32 arithmetic but are fine using np.float64 or simply float:
np.float32
np.float64
float
poly_point_isect.isect_polygon(np.array([ [0. , 0. ], [0.5 , 0. ], [1. , 0.1163]], dtype=np.float32)) # crashes poly_point_isect.isect_polygon(np.array([[1, 0], [0.27344, 0], [0, 0.17]], dtype=np.float32)) # crashes
The text was updated successfully, but these errors were encountered:
Same :)
Sorry, something went wrong.
No branches or pull requests
This is less clear-cut than #24, but I'm still getting crashes with some fairly benign-looking patterns:
The following crash when using
np.float32
arithmetic but are fine usingnp.float64
or simplyfloat
:The text was updated successfully, but these errors were encountered: