| 88 | } |
| 89 | |
| 90 | BoundingBox BoundingBox::Transform(const BoundingBox& box, const Matrix& matrix) |
| 91 | { |
| 92 | BoundingBox result; |
| 93 | Transform(box, matrix, result); |
| 94 | return result; |
| 95 | } |
| 96 | |
| 97 | BoundingBox BoundingBox::MakeOffsetted(const BoundingBox& box, const Vector3& offset) |
| 98 | { |
nothing calls this directly
no test coverage detected