#[repr(i32)]
pub enum PxConvexMeshCookingType {
Quickhull,
}Expand description
Enumeration for convex mesh cooking algorithms.
Variants§
Quickhull
The Quickhull algorithm constructs the hull from the given input points. The resulting hull will only contain a subset of the input points.
Trait Implementations§
source§impl Clone for PxConvexMeshCookingType
impl Clone for PxConvexMeshCookingType
source§fn clone(&self) -> PxConvexMeshCookingType
fn clone(&self) -> PxConvexMeshCookingType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for PxConvexMeshCookingType
impl Debug for PxConvexMeshCookingType
source§impl PartialEq<PxConvexMeshCookingType> for PxConvexMeshCookingType
impl PartialEq<PxConvexMeshCookingType> for PxConvexMeshCookingType
source§fn eq(&self, other: &PxConvexMeshCookingType) -> bool
fn eq(&self, other: &PxConvexMeshCookingType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.