(&self)
| 185 | /// ``` |
| 186 | #[inline(always)] |
| 187 | pub fn min_extent(&self) -> R { |
| 188 | let extents = self.extents(); |
| 189 | // Use imin indirectly, because min is broken in nalgebra |
| 190 | extents[extents.imin()] |
| 191 | } |
| 192 | |
| 193 | /// Returns the largest scalar extent of the AABB over all of its dimensions |
| 194 | /// ``` |