#[repr(C)]pub struct b3Counters {Show 20 fields
pub bodyCount: c_int,
pub shapeCount: c_int,
pub contactCount: c_int,
pub jointCount: c_int,
pub islandCount: c_int,
pub stackUsed: c_int,
pub arenaCapacity: c_int,
pub staticTreeHeight: c_int,
pub treeHeight: c_int,
pub satCallCount: c_int,
pub satCacheHitCount: c_int,
pub byteCount: c_int,
pub taskCount: c_int,
pub colorCounts: [c_int; 24],
pub manifoldCounts: [c_int; 8],
pub awakeContactCount: c_int,
pub recycledContactCount: c_int,
pub distanceIterations: c_int,
pub pushBackIterations: c_int,
pub rootIterations: c_int,
}Expand description
Counters that give details of the simulation size. @ingroup world
Fields§
§bodyCount: c_int§shapeCount: c_int§contactCount: c_int§jointCount: c_int§islandCount: c_int§stackUsed: c_int§arenaCapacity: c_int§staticTreeHeight: c_int§treeHeight: c_int§satCallCount: c_int§satCacheHitCount: c_int§byteCount: c_int§taskCount: c_int§colorCounts: [c_int; 24]§manifoldCounts: [c_int; 8]§awakeContactCount: c_intNumber of contacts touched by the collide pass graph contacts + awake-set non-touching
recycledContactCount: c_intNumber of contacts recycled in the most recent step.
distanceIterations: c_intMaximum number of time of impact iterations
pushBackIterations: c_int§rootIterations: c_intTrait Implementations§
Source§impl Clone for b3Counters
impl Clone for b3Counters
Source§fn clone(&self) -> b3Counters
fn clone(&self) -> b3Counters
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 b3Counters
Auto Trait Implementations§
impl Freeze for b3Counters
impl RefUnwindSafe for b3Counters
impl Send for b3Counters
impl Sync for b3Counters
impl Unpin for b3Counters
impl UnsafeUnpin for b3Counters
impl UnwindSafe for b3Counters
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