pub fn convex_polygons_intersection(
    poly1: &[OPoint<f32, Const<2>>],
    poly2: &[OPoint<f32, Const<2>>],
    out: impl FnMut(Option<PolylinePointLocation>, Option<PolylinePointLocation>)
)
Expand description

Computes the intersection of two convex polygons.

The resulting polygon is output vertex-by-vertex to the out closure.