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