| 309 | } |
| 310 | |
| 311 | void ScanGraph::transformScans() { |
| 312 | for(ScanGraph::iterator it=this->begin(); it != this->end(); it++) { |
| 313 | ((*it)->scan)->transformAbsolute((*it)->pose); |
| 314 | } |
| 315 | } |
| 316 | |
| 317 | bool ScanGraph::writeBinary(const std::string& filename) const { |
| 318 | std::ofstream binary_outfile( filename.c_str(), std::ios_base::binary); |
nothing calls this directly
no test coverage detected