We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 802bf99 commit 49d7bc8Copy full SHA for 49d7bc8
doc/tutorials/content/sources/octree_change_detection/octree_change_detection.cpp
@@ -62,10 +62,10 @@ main ()
62
63
// Output points
64
std::cout << "Output from getPointIndicesFromNewVoxels:" << std::endl;
65
- for (std::size_t i = 0; i < newPointIdxVector.size (); ++i)
+ for (std::size_t i = 0; i < newPointIdxVector.size (); ++i){
66
std::cout << i << "# Index:" << newPointIdxVector[i]
67
<< " Point:" << (*cloudB)[newPointIdxVector[i]].x << " "
68
<< (*cloudB)[newPointIdxVector[i]].y << " "
69
<< (*cloudB)[newPointIdxVector[i]].z << std::endl;
70
-
+ }
71
}
0 commit comments