| 88 | } |
| 89 | |
| 90 | void ObjectPoints::swapPointCloud( std::shared_ptr< PointCloud >& points ) |
| 91 | { |
| 92 | if ( points == points_ ) |
| 93 | return; |
| 94 | points_.swap( points ); |
| 95 | setDirtyFlags( DIRTY_ALL ); |
| 96 | } |
| 97 | |
| 98 | void ObjectPoints::swapBase_( Object& other ) |
| 99 | { |
no test coverage detected