You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
Hi, I have tried to use gdsy.inside, and I also read snippets of clipper.cpp, it looks like the inside function only checks if the point is inside the bbox of the polygon(s). Is it true and do you have any API for checking if the point is inside the polygon but not its bbox? Thanks
The text was updated successfully, but these errors were encountered:
The bounding box check is just the first check for a fast response: if the point is outside the bounding box, it cannot be inside the polygon. After that, the more expensive polygon check is performed.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi, I have tried to use gdsy.inside, and I also read snippets of clipper.cpp, it looks like the inside function only checks if the point is inside the bbox of the polygon(s). Is it true and do you have any API for checking if the point is inside the polygon but not its bbox? Thanks
The text was updated successfully, but these errors were encountered: