[][src]Struct physx_sys::PxSimulationStatistics

#[repr(C)]pub struct PxSimulationStatistics {
    pub nbActiveConstraints: u32,
    pub nbActiveDynamicBodies: u32,
    pub nbActiveKinematicBodies: u32,
    pub nbStaticBodies: u32,
    pub nbDynamicBodies: u32,
    pub nbKinematicBodies: u32,
    pub nbShapes: [u32; 7],
    pub nbAggregates: u32,
    pub nbArticulations: u32,
    pub nbAxisSolverConstraints: u32,
    pub compressedContactSize: u32,
    pub requiredContactConstraintMemory: u32,
    pub peakConstraintMemory: u32,
    pub nbDiscreteContactPairsTotal: u32,
    pub nbDiscreteContactPairsWithCacheHits: u32,
    pub nbDiscreteContactPairsWithContacts: u32,
    pub nbNewPairs: u32,
    pub nbLostPairs: u32,
    pub nbNewTouches: u32,
    pub nbLostTouches: u32,
    pub nbPartitions: u32,
    pub nbBroadPhaseAdds: u32,
    pub nbBroadPhaseRemoves: u32,
    pub nbDiscreteContactPairs: [[u32; 7]; 7],
    pub nbCCDPairs: [[u32; 7]; 7],
    pub nbModifiedContactPairs: [[u32; 7]; 7],
    pub nbTriggerPairs: [[u32; 7]; 7],
}

Fields

nbActiveConstraints: u32nbActiveDynamicBodies: u32nbActiveKinematicBodies: u32nbStaticBodies: u32nbDynamicBodies: u32nbKinematicBodies: u32nbShapes: [u32; 7]nbAggregates: u32nbArticulations: u32nbAxisSolverConstraints: u32compressedContactSize: u32requiredContactConstraintMemory: u32peakConstraintMemory: u32nbDiscreteContactPairsTotal: u32nbDiscreteContactPairsWithCacheHits: u32nbDiscreteContactPairsWithContacts: u32nbNewPairs: u32nbLostPairs: u32nbNewTouches: u32nbLostTouches: u32nbPartitions: u32nbBroadPhaseAdds: u32nbBroadPhaseRemoves: u32nbDiscreteContactPairs: [[u32; 7]; 7]nbCCDPairs: [[u32; 7]; 7]nbModifiedContactPairs: [[u32; 7]; 7]nbTriggerPairs: [[u32; 7]; 7]

Trait Implementations

impl Clone for PxSimulationStatistics[src]

impl Copy for PxSimulationStatistics[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.