From 16166604e9a6b8eaa88c279d4cf62211e89b18f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Sun, 28 Apr 2024 16:24:11 +0200 Subject: [PATCH] chore: typo fix --- src/bounding_volume/aabb.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bounding_volume/aabb.rs b/src/bounding_volume/aabb.rs index ed32cb05..df0697c4 100644 --- a/src/bounding_volume/aabb.rs +++ b/src/bounding_volume/aabb.rs @@ -202,7 +202,7 @@ impl Aabb { BoundingSphere::new(center, radius) } - /// Does this AABB contains a point expressed in the same coordinate frame as `self`. + /// Does this AABB contains a point expressed in the same coordinate frame as `self`? #[inline] pub fn contains_local_point(&self, point: &Point) -> bool { for i in 0..DIM { @@ -214,7 +214,7 @@ impl Aabb { true } - /// Does this AABB intersects an AABB `aabb2` moving at velocity `vel12` relative to `self`. + /// Does this AABB intersects an AABB `aabb2` moving at velocity `vel12` relative to `self`? #[inline] pub fn intersects_moving_aabb(&self, aabb2: &Self, vel12: Vector) -> bool { // Minkowski sum.