//! Oriented bounding cylinder
usecgmath::Point3;usecgmath::Vector3;/// Bounding cylinder
#[derive(Copy, Clone, PartialEq, Debug)]#[cfg_attr(feature ="serde",derive(Serialize, Deserialize))]pubstructCylinder<S>{/// Center point
pubcenter:Point3<S>,
/// Axis the cylinder is aligned with
pubaxis:Vector3<S>,
/// Radius of the cylinder
pubradius: S,
}