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