1use parry3d::shape::Cylinder; 2 3fn main() { 4 let cylinder = Cylinder::new(0.5f32, 1.0); 5 6 assert!(cylinder.half_height == 0.5); 7 assert!(cylinder.radius == 1.0); 8}