aboutsummaryrefslogtreecommitdiff
path: root/src/geometry/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/geometry/mod.rs')
-rw-r--r--src/geometry/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/geometry/mod.rs b/src/geometry/mod.rs
index 6b8aebf..d1c4161 100644
--- a/src/geometry/mod.rs
+++ b/src/geometry/mod.rs
@@ -42,6 +42,8 @@ pub type Ray = parry::query::Ray;
pub type RayIntersection = parry::query::RayIntersection;
/// The the projection of a point on a collider.
pub type PointProjection = parry::query::PointProjection;
+/// The the time of impact between two shapes.
+pub type TOI = parry::query::TOI;
pub use parry::shape::SharedShape;
#[derive(Copy, Clone, Hash, Debug)]