| 356 | } |
| 357 | |
| 358 | inline void Box3F::getCenter(Point3F* center) const |
| 359 | { |
| 360 | center->x = (minExtents.x + maxExtents.x) * 0.5f; |
| 361 | center->y = (minExtents.y + maxExtents.y) * 0.5f; |
| 362 | center->z = (minExtents.z + maxExtents.z) * 0.5f; |
| 363 | } |
| 364 | |
| 365 | inline Point3F Box3F::getCenter() const |
| 366 | { |
no outgoing calls
no test coverage detected