pub type RoundConvexPolyhedron = RoundShape<ConvexPolyhedron>;Expand description
A convex polyhedron dilated by a sphere (so it has round corners).
Aliased Type§
#[repr(C)]pub struct RoundConvexPolyhedron {
pub inner_shape: ConvexPolyhedron,
pub border_radius: f64,
}Fields§
§inner_shape: ConvexPolyhedronThe shape being rounded.
border_radius: f64The radius of the rounded border.