#[repr(i32)]pub enum PxConvexMeshCookingType {
Quickhull = 0,
}Expand description
Enumeration for convex mesh cooking algorithms.
Variants§
Quickhull = 0
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 duplicate 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 for PxConvexMeshCookingType
impl PartialEq for PxConvexMeshCookingType
impl Copy for PxConvexMeshCookingType
impl Eq for PxConvexMeshCookingType
impl StructuralPartialEq for PxConvexMeshCookingType
Auto Trait Implementations§
impl Freeze for PxConvexMeshCookingType
impl RefUnwindSafe for PxConvexMeshCookingType
impl Send for PxConvexMeshCookingType
impl Sync for PxConvexMeshCookingType
impl Unpin for PxConvexMeshCookingType
impl UnwindSafe for PxConvexMeshCookingType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more