#[repr(i32)]pub enum PxHairSystemData {
None = 0,
PositionInvmass = 1,
Velocity = 2,
All = 3,
}Expand description
Identifies input and output buffers for PxHairSystem
Variants§
None = 0
No data specified
PositionInvmass = 1
Specifies the position (first 3 floats) and inverse mass (last float) data (array of PxVec4 * max number of vertices)
Velocity = 2
Specifies the velocity (first 3 floats) data (array of PxVec4 * max number of vertices)
All = 3
Specifies everything
Trait Implementations§
Source§impl Clone for PxHairSystemData
impl Clone for PxHairSystemData
Source§fn clone(&self) -> PxHairSystemData
fn clone(&self) -> PxHairSystemData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PxHairSystemData
Source§impl Debug for PxHairSystemData
impl Debug for PxHairSystemData
impl Eq for PxHairSystemData
Source§impl PartialEq for PxHairSystemData
impl PartialEq for PxHairSystemData
Source§fn eq(&self, other: &PxHairSystemData) -> bool
fn eq(&self, other: &PxHairSystemData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PxHairSystemData
Auto Trait Implementations§
impl Freeze for PxHairSystemData
impl RefUnwindSafe for PxHairSystemData
impl Send for PxHairSystemData
impl Sync for PxHairSystemData
impl Unpin for PxHairSystemData
impl UnsafeUnpin for PxHairSystemData
impl UnwindSafe for PxHairSystemData
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