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
Functionally this will be the same as difference(subjectGeom, union(clipGeom1, clipGeom2, ...)) just all done in one pass. It'll be more efficient, and will give difference the same function signature as the other operations.
The text was updated successfully, but these errors were encountered:
Currently there exists:
difference(subjectGeom, clippingGeom)
This can be expanded to support multiple clippings:
difference(subjectGeom, clipGeom1, clipGeom2, ...)
Functionally this will be the same as
difference(subjectGeom, union(clipGeom1, clipGeom2, ...))
just all done in one pass. It'll be more efficient, and will givedifference
the same function signature as the other operations.The text was updated successfully, but these errors were encountered: