Type Alias parry2d_f64::shape::RoundConvexPolygon
source · pub type RoundConvexPolygon = RoundShape<ConvexPolygon>;Expand description
A convex polygon dilated by a sphere (so it has round corners).
Aliased Type§
struct RoundConvexPolygon {
pub inner_shape: ConvexPolygon,
pub border_radius: f64,
}Fields§
§inner_shape: ConvexPolygonThe shape being rounded.
border_radius: f64The radius of the rounded border.