pub trait SphereGeometry: Class<PxSphereGeometry> + Geometry {
    fn new(radius: f32) -> PxSphereGeometry { ... }
    fn default() -> PxSphereGeometry { ... }
    fn is_valid(&self) -> bool { ... }
}

Provided Methods

Implementors