| 343 | } |
| 344 | |
| 345 | Box3f MoveObjectByMouseImpl::getBbox_( const std::vector<std::shared_ptr<Object>>& objects ) const |
| 346 | { |
| 347 | Box3f worldBbox; |
| 348 | for ( const std::shared_ptr<Object>& obj : objects ) |
| 349 | if ( obj ) |
| 350 | worldBbox.include( obj->getWorldBox() ); |
| 351 | return worldBbox; |
| 352 | } |
| 353 | |
| 354 | void MoveObjectByMouseImpl::clear_() |
| 355 | { |
nothing calls this directly
no test coverage detected