Return the local bounds of the shape in x, y and z directions * @return The AABB with the min/max bounds */
| 206 | * @return The AABB with the min/max bounds |
| 207 | */ |
| 208 | AABB ConvexMeshShape::getLocalBounds() const { |
| 209 | AABB aabb = mConvexMesh->getBounds(); |
| 210 | aabb.applyScale(mScale); |
| 211 | return aabb; |
| 212 | } |
| 213 | |
| 214 | // Return the string representation of the shape |
| 215 | std::string ConvexMeshShape::to_string() const { |
nothing calls this directly
no test coverage detected