| 41 | } |
| 42 | |
| 43 | std::shared_ptr< Mesh > ObjectMesh::updateMesh( std::shared_ptr< Mesh > mesh ) |
| 44 | { |
| 45 | if ( mesh != data_.mesh ) |
| 46 | { |
| 47 | data_.mesh.swap( mesh ); |
| 48 | setDirtyFlags( DIRTY_ALL ); |
| 49 | } |
| 50 | return mesh; |
| 51 | } |
| 52 | |
| 53 | std::vector<std::string> ObjectMesh::getInfoLines() const |
| 54 | { |
no test coverage detected