#[repr(i32)]pub enum PxTriangleMeshFlag {
E16BitIndices = 2,
AdjacencyInfo = 4,
PreferNoSdfProj = 8,
}Expand description
Flags for the mesh geometry properties.
Used in ::PxTriangleMeshFlags.
Variants§
E16BitIndices = 2
The triangle mesh has 16bits vertex indices.
AdjacencyInfo = 4
The triangle mesh has adjacency information build.
PreferNoSdfProj = 8
Indicates that this mesh would preferably not be the mesh projected for mesh-mesh collision. This can indicate that the mesh is not well tessellated.
Trait Implementations§
Source§impl Clone for PxTriangleMeshFlag
impl Clone for PxTriangleMeshFlag
Source§fn clone(&self) -> PxTriangleMeshFlag
fn clone(&self) -> PxTriangleMeshFlag
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 PxTriangleMeshFlag
impl Debug for PxTriangleMeshFlag
Source§impl PartialEq for PxTriangleMeshFlag
impl PartialEq for PxTriangleMeshFlag
impl Copy for PxTriangleMeshFlag
impl Eq for PxTriangleMeshFlag
impl StructuralPartialEq for PxTriangleMeshFlag
Auto Trait Implementations§
impl Freeze for PxTriangleMeshFlag
impl RefUnwindSafe for PxTriangleMeshFlag
impl Send for PxTriangleMeshFlag
impl Sync for PxTriangleMeshFlag
impl Unpin for PxTriangleMeshFlag
impl UnwindSafe for PxTriangleMeshFlag
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