Type Alias rapier3d::geometry::RoundCuboid

source ·
pub type RoundCuboid = RoundShape<Cuboid>;
Expand description

A cuboid dilated by a sphere (so it has round corners).

Aliased Type§

struct RoundCuboid {
    pub inner_shape: Cuboid,
    pub border_radius: f32,
}

Fields§

§inner_shape: Cuboid

The shape being rounded.

§border_radius: f32

The radius of the rounded border.