pub trait ConvexMeshGeometry: Class<PxConvexMeshGeometry> + Geometry {
// Provided methods
fn new(
mesh: &mut ConvexMesh,
scaling: &impl Class<PxMeshScale>,
flags: ConvexMeshGeometryFlags,
) -> PxConvexMeshGeometry { ... }
fn default() -> PxConvexMeshGeometry { ... }
fn is_valid(&self) -> bool { ... }
}Provided Methods§
fn new( mesh: &mut ConvexMesh, scaling: &impl Class<PxMeshScale>, flags: ConvexMeshGeometryFlags, ) -> PxConvexMeshGeometry
fn default() -> PxConvexMeshGeometry
fn is_valid(&self) -> bool
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".