pub fn sym_difference_multi<G1, G2, P>(
g1: &G1,
g2: &G2,
) -> Result<MultiPolygon<Polygon<P>>, OverlayError>where
G1: MultiPolygonTrait<Point = P>,
G2: MultiPolygonTrait<Point = P>,
P: PointMut + Default + Copy,
P::Scalar: CoordinateScalar + Into<f64>,
<P::Cs as CoordinateSystem>::Family: SameAs<CartesianFamily>,Expand description
Symmetric difference of two multi-polygons — inside exactly one of them.
§Errors
OverlayError::Unsupported when coordinates exceed the predicate range.