From edaa36ac7e702f419faab4ff1b9af858fc84177f Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sun, 9 Jun 2024 10:57:37 +0200 Subject: chore: add more comments --- src/dynamics/ccd/toi_entry.rs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/dynamics/ccd') 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, 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, )) } -- cgit