Merge pull request #376 from timokoesters/typo

Fix typo in BroadPhase
This commit is contained in:
Sébastien Crozet
2022-08-08 09:11:14 +02:00
committed by GitHub

View File

@@ -27,7 +27,7 @@ use parry::utils::hashmap::HashMap;
/// collecting endpoints and swapping them when they move to detect interaction pairs). /// collecting endpoints and swapping them when they move to detect interaction pairs).
/// Each AABB is inserted in all the regions it intersects. /// Each AABB is inserted in all the regions it intersects.
/// This prevents the far-away problem because two objects that are far away will /// This prevents the far-away problem because two objects that are far away will
/// be located on different regions. So their endpoints will never meed. /// be located on different regions. So their endpoints will never meet.
/// ///
/// However, the Multi-SAP approach has one notable problem: the region size must /// However, the Multi-SAP approach has one notable problem: the region size must
/// be chosen wisely. It could be user-defined, but that's makes it more difficult /// be chosen wisely. It could be user-defined, but that's makes it more difficult