From 05c39258840d95ac2cdcda1d94ac0062541b58f4 Mon Sep 17 00:00:00 2001 From: Thierry Berger Date: Thu, 13 Jun 2024 11:31:49 +0200 Subject: fix: Fixed typo in castShape functions (#653) --- src/pipeline/query_pipeline/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/pipeline/query_pipeline/mod.rs b/src/pipeline/query_pipeline/mod.rs index 829499f..6e536d0 100644 --- a/src/pipeline/query_pipeline/mod.rs +++ b/src/pipeline/query_pipeline/mod.rs @@ -602,7 +602,7 @@ impl QueryPipeline { /// limits the distance traveled by the shape to `shapeVel.norm() * maxToi`. /// * `stop_at_penetration` - If set to `false`, the linear shape-cast won’t immediately stop if /// the shape is penetrating another shape at its starting point **and** its trajectory is such - /// that it’s on a path to exist that penetration state. + /// that it’s on a path to exit that penetration state. /// * `filter`: set of rules used to determine which collider is taken into account by this scene query. pub fn cast_shape( &self, -- cgit