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

pub struct Counters { /* fields omitted */ }

Aggregation of all the performances counters tracked by nphysics.

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 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 Display for Counters[src]

Auto Trait Implementations

impl Send for Counters

impl Sync for Counters

Blanket Implementations

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

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

impl<T, U> TryInto 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<T> BorrowMut for T where
    T: ?Sized
[src]

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

impl<T> Downcast for T where
    T: Any
[src]

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self