aboutsummaryrefslogtreecommitdiff
path: root/src/dynamics/ccd
diff options
context:
space:
mode:
authorSébastien Crozet <sebcrozet@dimforge.com>2024-06-09 10:57:37 +0200
committerSébastien Crozet <sebastien@crozet.re>2024-06-09 12:09:58 +0200
commitedaa36ac7e702f419faab4ff1b9af858fc84177f (patch)
tree059a92ef66db3f4769146ef20b64b3dcbb649129 /src/dynamics/ccd
parentcfddaa3c46e58f59d551e3dc7fc5d4380b322789 (diff)
downloadrapier-edaa36ac7e702f419faab4ff1b9af858fc84177f.tar.gz
rapier-edaa36ac7e702f419faab4ff1b9af858fc84177f.tar.bz2
rapier-edaa36ac7e702f419faab4ff1b9af858fc84177f.zip
chore: add more comments
Diffstat (limited to 'src/dynamics/ccd')
-rw-r--r--src/dynamics/ccd/toi_entry.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/dynamics/ccd/toi_entry.rs b/src/dynamics/ccd/toi_entry.rs
index 426cbb1..82b4532 100644
--- a/src/dynamics/ccd/toi_entry.rs
+++ b/src/dynamics/ccd/toi_entry.rs
@@ -13,7 +13,6 @@ pub struct TOIEntry {
// We call this "pseudo" intersection because this also
// includes colliders pairs with mismatching solver_groups.
pub is_pseudo_intersection_test: bool,
- pub timestamp: usize,
}
impl TOIEntry {
@@ -24,7 +23,6 @@ impl TOIEntry {
c2: ColliderHandle,
b2: Option<RigidBodyHandle>,
is_pseudo_intersection_test: bool,
- timestamp: usize,
) -> Self {
Self {
toi,
@@ -33,7 +31,6 @@ impl TOIEntry {
c2,
b2,
is_pseudo_intersection_test,
- timestamp,
}
}
@@ -149,7 +146,6 @@ impl TOIEntry {
ch2,
co2.parent.map(|p| p.handle),
is_pseudo_intersection_test,
- 0,
))
}