(&self)
| 132 | /// Returns the max coordinate of the bounding box |
| 133 | #[inline(always)] |
| 134 | pub fn max(&self) -> &SVector<R, D> { |
| 135 | &self.max |
| 136 | } |
| 137 | |
| 138 | /// Returns whether the AABB is consistent, i.e. `aabb.min()[i] <= aabb.max()[i]` for all `i` |
| 139 | /// ``` |
no outgoing calls