-------------------------------------------------------------------------------- Description: Calculates actual bounds for the object using the placeable res and attached objects Arguments: minBounds - bounding box's minimum bounds maxBounds - bounding box's minimum bounds --------------------------------------------------------------------------------
| 483 | // maxBounds - bounding box's minimum bounds |
| 484 | // -------------------------------------------------------------------------------- |
| 485 | void Tr2InteriorPlaceable::CalculateBoundingBox( Vector3& minBounds, Vector3& maxBounds ) |
| 486 | { |
| 487 | Vector3 min, max; |
| 488 | GetLocalBoundingBox( min, max ); |
| 489 | BoundingBoxUpdate( minBounds, maxBounds, min, max ); |
| 490 | } |
| 491 | |
| 492 | void Tr2InteriorPlaceable::RebuildVolume( void ) |
| 493 | { |
nothing calls this directly
no test coverage detected