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