pub type RoundCuboid = RoundShape<Cuboid>;Expand description
A cuboid dilated by a sphere (so it has round corners).
Aliased Type§
#[repr(C)]pub struct RoundCuboid {
pub inner_shape: Cuboid,
pub border_radius: f32,
}Fields§
§inner_shape: CuboidThe shape being rounded.
border_radius: f32The radius of the rounded border.