graphinglib.Polygon.create_union# Polygon.create_union(other: Self, copy_style: bool = False) → Self[source]# Returns the union of the polygon with another polygon. Parameters: otherPolygonThe other polygon. copy_stylebool, optionalIf True, the current polygon’s parameters are copied to the new polygon. If False, the new polygon will have default parameters. Default is False. Returns: PolygonThe union of the two polygons.