Checks if the given AABB is inside the AABB, the AABB is considered to be half-open to its max coordinate
(&self, other: &Self)
| 213 | |
| 214 | /// Checks if the given AABB is inside the AABB, the AABB is considered to be half-open to its max coordinate |
| 215 | pub fn contains_aabb(&self, other: &Self) -> bool { |
| 216 | self.contains_point(&other.min) || self.contains_point(&other.max) |
| 217 | } |
| 218 | |
| 219 | /// Checks if the given point is inside the AABB, the AABB is considered to be half-open to its max coordinate |
| 220 | pub fn contains_point(&self, point: &SVector<R, D>) -> bool { |
nothing calls this directly
no test coverage detected