Polygons
Polygons Objects
class Polygons(Entities)
intersection
def intersection(other: Polygons, threshold: float) -> Polygons
Find a set of polygons that intersect with another set of polygons. The threshold is user specified and is used to determine if two polygons sufficiently overlap to be considered intersecting.
Arguments:
otherPolygons - Set of polygons to intersect with.thresholdfloat - The threshold for determining if two polygons are sufficiently intersecting.
Returns:
Polygons- unique set of polygons that intersect with the other set of polygons.