Enlarges this AABB to the smallest AABB enclosing both itself and another AABB
(&mut self, other: &Self)
| 243 | |
| 244 | /// Enlarges this AABB to the smallest AABB enclosing both itself and another AABB |
| 245 | pub fn join(&mut self, other: &Self) { |
| 246 | self.min = self.min.inf(&other.min); |
| 247 | self.max = self.max.sup(&other.max); |
| 248 | } |
| 249 | |
| 250 | /// Enlarges this AABB to the smallest AABB enclosing both itself and another point |
| 251 | pub fn join_with_point(&mut self, point: &SVector<R, D>) { |
no outgoing calls
no test coverage detected