| 353 | } |
| 354 | |
| 355 | bool Tr2MeshBase::GetBoundingBox( Vector3& min, Vector3& max ) const |
| 356 | { |
| 357 | if( auto aabb = GetBounds() ) |
| 358 | { |
| 359 | min = aabb.m_min; |
| 360 | max = aabb.m_max; |
| 361 | return true; |
| 362 | } |
| 363 | return false; |
| 364 | } |
| 365 | |
| 366 | // -------------------------------------------------------------------------------- |
| 367 | bool Tr2MeshBase::GetDisplay() const |