aboutsummaryrefslogtreecommitdiff
path: root/src/counters
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2022-01-02 14:47:40 +0100
committerSébastien Crozet <developer@crozet.re>2022-01-02 16:58:36 +0100
commitf74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc (patch)
tree53ac492fea5942a7d466f58a0095f39505674ea4 /src/counters
parentb45d4b5ac2b31856c15e802b31e288a58940cbf2 (diff)
downloadrapier-f74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc.tar.gz
rapier-f74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc.tar.bz2
rapier-f74b8401ad9ef50b8cdbf1f43a2b21f6c42b0ebc.zip
Implement multibody joints and the new solver
Diffstat (limited to 'src/counters')
-rw-r--r--src/counters/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/counters/mod.rs b/src/counters/mod.rs
index 4d4d05d..324696f 100644
--- a/src/counters/mod.rs
+++ b/src/counters/mod.rs
@@ -14,7 +14,7 @@ mod solver_counters;
mod stages_counters;
mod timer;
-/// Aggregation of all the performances counters tracked by nphysics.
+/// Aggregation of all the performances counters tracked by rapier.
#[derive(Clone, Copy)]
pub struct Counters {
/// Whether thi counter is enabled or not.
@@ -34,7 +34,7 @@ pub struct Counters {
}
impl Counters {
- /// Create a new set of counters initialized to wero.
+ /// Create a new set of counters initialized to zero.
pub fn new(enabled: bool) -> Self {
Counters {
enabled,