/////////////////////////////////////////////////////////////////////////////////////////
| 74 | |
| 75 | ////////////////////////////////////////////////////////////////////////////////////////////// |
| 76 | bool |
| 77 | pcl::modeler::CloudMesh::open(const std::string& filename) |
| 78 | { |
| 79 | if (pcl::io::loadPCDFile(filename, *cloud_) != 0) |
| 80 | return false; |
| 81 | |
| 82 | updateVtkPoints(); |
| 83 | |
| 84 | return true; |
| 85 | } |
| 86 | |
| 87 | ////////////////////////////////////////////////////////////////////////////////////////////// |
| 88 | bool |
no test coverage detected