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
The current relationship methods return only booleans, i.e. if the relationship exists. Better would be to return where the relationship exists, or false if it does not exist.
The polygon relationship methods will likely be somewhat time consuming to implement. The most modern algorithms for performing boolean operations on polygons can be found here: http://www.cs.ucr.edu/~vbz/cs230papers/martinez_boolean.pdf
These will likely not be compatible with current methods, so it may be necessary to bump major versions.
The text was updated successfully, but these errors were encountered:
It will likely also be necessary to implement a utility method called, say, polygonWind, polygonSort, or polygonOrder because the Martinez et al clipping algorithms require a polygon's vertices to be in counter-clockwise order.
The current relationship methods return only booleans, i.e. if the relationship exists. Better would be to return where the relationship exists, or false if it does not exist.
The polygon relationship methods will likely be somewhat time consuming to implement. The most modern algorithms for performing boolean operations on polygons can be found here: http://www.cs.ucr.edu/~vbz/cs230papers/martinez_boolean.pdf
These will likely not be compatible with current methods, so it may be necessary to bump major versions.
The text was updated successfully, but these errors were encountered: