| 1090 | } |
| 1091 | |
| 1092 | Box3F TSStaticPolysoupConvex::getBoundingBox() const |
| 1093 | { |
| 1094 | Box3F wbox = box; |
| 1095 | wbox.minExtents.convolve( mObject->getScale() ); |
| 1096 | wbox.maxExtents.convolve( mObject->getScale() ); |
| 1097 | mObject->getTransform().mul(wbox); |
| 1098 | return wbox; |
| 1099 | } |
| 1100 | |
| 1101 | Box3F TSStaticPolysoupConvex::getBoundingBox(const MatrixF& mat, const Point3F& scale) const |
| 1102 | { |
no test coverage detected