[][src]Struct nphysics3d::counters::Counters

pub struct Counters {
    pub enabled: bool,
    pub step_time: Timer,
    pub custom: Timer,
    pub stages: StagesCounters,
    pub cd: CollisionDetectionCounters,
    pub solver: SolverCounters,
    pub ccd: CCDCounters,
}

Aggregation of all the performances counters tracked by nphysics.

Fields

enabled: bool

Whether thi counter is enabled or not.

step_time: Timer

Timer for a whole timestep.

custom: Timer

Timer used for debugging.

stages: StagesCounters

Counters of every satge of one time step.

cd: CollisionDetectionCounters

Counters of the collision-detection stage.

solver: SolverCounters

Counters of the constraints resolution and force computation stage.

ccd: CCDCounters

Counters for the CCD resolution stage.

Methods

impl Counters[src]

pub fn new(enabled: bool) -> Self[src]

Create a new set of counters initialized to wero.

pub fn enable(&mut self)[src]

Enable all the counters.

pub fn enabled(&self) -> bool[src]

Return true if the counters are enabled.

pub fn disable(&mut self)[src]

Disable all the counters.

pub fn step_started(&mut self)[src]

Notify that the time-step has started.

pub fn step_completed(&mut self)[src]

Notfy that the time-step has finished.

pub fn step_time(&self) -> f64[src]

Total time spent for one of the physics engine.

pub fn custom_started(&mut self)[src]

Notify that the custom operation has started.

pub fn custom_completed(&mut self)[src]

Notfy that the custom operation has finished.

pub fn custom_time(&self) -> f64[src]

Total time of a custom event.

pub fn set_nconstraints(&mut self, n: usize)[src]

Set the number of constraints generated.

pub fn set_ncontacts(&mut self, n: usize)[src]

Set the number of contacts generated.

pub fn set_ncontact_pairs(&mut self, n: usize)[src]

Set the number of contact pairs generated.

impl Counters[src]

pub fn update_started(&mut self)[src]

Start this timer.

pub fn update_completed(&mut self)[src]

Stop this timer.

pub fn update_time(&self) -> f64[src]

Gets the time elapsed for this timer.

impl Counters[src]

pub fn collision_detection_started(&mut self)[src]

Start this timer.

pub fn collision_detection_completed(&mut self)[src]

Stop this timer.

pub fn collision_detection_time(&self) -> f64[src]

Gets the time elapsed for this timer.

impl Counters[src]

pub fn island_construction_started(&mut self)[src]

Start this timer.

pub fn island_construction_completed(&mut self)[src]

Stop this timer.

pub fn island_construction_time(&self) -> f64[src]

Gets the time elapsed for this timer.

impl Counters[src]

pub fn solver_started(&mut self)[src]

Start this timer.

pub fn solver_completed(&mut self)[src]

Stop this timer.

pub fn solver_time(&self) -> f64[src]

Gets the time elapsed for this timer.

impl Counters[src]

pub fn ccd_started(&mut self)[src]

Start this timer.

pub fn ccd_completed(&mut self)[src]

Stop this timer.

pub fn ccd_time(&self) -> f64[src]

Gets the time elapsed for this timer.

impl Counters[src]

pub fn assembly_started(&mut self)[src]

Start this timer.

pub fn assembly_completed(&mut self)[src]

Stop this timer.

pub fn assembly_time(&self) -> f64[src]

Gets the time elapsed for this timer.

impl Counters[src]

pub fn velocity_resolution_started(&mut self)[src]

Start this timer.

pub fn velocity_resolution_completed(&mut self)[src]

Stop this timer.

pub fn velocity_resolution_time(&self) -> f64[src]

Gets the time elapsed for this timer.

impl Counters[src]

pub fn velocity_update_started(&mut self)[src]

Start this timer.

pub fn velocity_update_completed(&mut self)[src]

Stop this timer.

pub fn velocity_update_time(&self) -> f64[src]

Gets the time elapsed for this timer.

impl Counters[src]

pub fn position_resolution_started(&mut self)[src]

Start this timer.

pub fn position_resolution_completed(&mut self)[src]

Stop this timer.

pub fn position_resolution_time(&self) -> f64[src]

Gets the time elapsed for this timer.

impl Counters[src]

pub fn broad_phase_started(&mut self)[src]

Start this timer.

pub fn broad_phase_completed(&mut self)[src]

Stop this timer.

pub fn broad_phase_time(&self) -> f64[src]

Gets the time elapsed for this timer.

impl Counters[src]

pub fn narrow_phase_started(&mut self)[src]

Start this timer.

pub fn narrow_phase_completed(&mut self)[src]

Stop this timer.

pub fn narrow_phase_time(&self) -> f64[src]

Gets the time elapsed for this timer.

Trait Implementations

impl Clone for Counters[src]

impl Copy for Counters[src]

impl Display for Counters[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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Slottable for T where
    T: Copy
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,