Struct rubullet_sys::b3PhysicsSimulationParameters[][src]

#[repr(C)]pub struct b3PhysicsSimulationParameters {
    pub m_deltaTime: f64,
    pub m_simulationTimestamp: f64,
    pub m_gravityAcceleration: [f64; 3],
    pub m_numSimulationSubSteps: c_int,
    pub m_numSolverIterations: c_int,
    pub m_warmStartingFactor: f64,
    pub m_articulatedWarmStartingFactor: f64,
    pub m_useRealTimeSimulation: c_int,
    pub m_useSplitImpulse: c_int,
    pub m_splitImpulsePenetrationThreshold: f64,
    pub m_contactBreakingThreshold: f64,
    pub m_internalSimFlags: c_int,
    pub m_defaultContactERP: f64,
    pub m_collisionFilterMode: c_int,
    pub m_enableFileCaching: c_int,
    pub m_restitutionVelocityThreshold: f64,
    pub m_defaultNonContactERP: f64,
    pub m_frictionERP: f64,
    pub m_defaultGlobalCFM: f64,
    pub m_frictionCFM: f64,
    pub m_enableConeFriction: c_int,
    pub m_deterministicOverlappingPairs: c_int,
    pub m_allowedCcdPenetration: f64,
    pub m_jointFeedbackMode: c_int,
    pub m_solverResidualThreshold: f64,
    pub m_contactSlop: f64,
    pub m_enableSAT: c_int,
    pub m_constraintSolverType: c_int,
    pub m_minimumSolverIslandSize: c_int,
    pub m_reportSolverAnalytics: c_int,
    pub m_sparseSdfVoxelSize: f64,
    pub m_numNonContactInnerIterations: c_int,
}

Fields

m_deltaTime: f64m_simulationTimestamp: f64m_gravityAcceleration: [f64; 3]m_numSimulationSubSteps: c_intm_numSolverIterations: c_intm_warmStartingFactor: f64m_articulatedWarmStartingFactor: f64m_useRealTimeSimulation: c_intm_useSplitImpulse: c_intm_splitImpulsePenetrationThreshold: f64m_contactBreakingThreshold: f64m_internalSimFlags: c_intm_defaultContactERP: f64m_collisionFilterMode: c_intm_enableFileCaching: c_intm_restitutionVelocityThreshold: f64m_defaultNonContactERP: f64m_frictionERP: f64m_defaultGlobalCFM: f64m_frictionCFM: f64m_enableConeFriction: c_intm_deterministicOverlappingPairs: c_intm_allowedCcdPenetration: f64m_jointFeedbackMode: c_intm_solverResidualThreshold: f64m_contactSlop: f64m_enableSAT: c_intm_constraintSolverType: c_intm_minimumSolverIslandSize: c_intm_reportSolverAnalytics: c_intm_sparseSdfVoxelSize: f64m_numNonContactInnerIterations: c_int

Trait Implementations

impl Clone for b3PhysicsSimulationParameters[src]

impl Copy for b3PhysicsSimulationParameters[src]

impl Debug for b3PhysicsSimulationParameters[src]

impl Default for b3PhysicsSimulationParameters[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.