pub fn convex_polygons_intersection_points(
poly1: &[Point2<Real>],
poly2: &[Point2<Real>],
out: &mut Vec<Point2<Real>>
)
Expand description
Computes the intersection points of two convex polygons.
The resulting polygon is output vertex-by-vertex to the out
closure.