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 f8f4e8c commit b8c41fcCopy full SHA for b8c41fc
README.md
@@ -31,8 +31,8 @@ An arbitrary number of point clouds can then be added to the data structure usin
31
std::vector<std::array<Real, 3>> point_set_1;
32
std::vector<std::array<Real, 3>> point_set_2;
33
34
-unsigned int point_set_1_id = nsearch.add_point_set(positions.front().data(), positions.size());
35
-unsigned int point_set_2_id = nsearch.add_point_set(positions.front().data(), positions.size());
+unsigned int point_set_1_id = nsearch.add_point_set(point_set_1.front().data(), positions.size());
+unsigned int point_set_2_id = nsearch.add_point_set(point_set_2.front().data(), positions.size());
36
```
37
In order to generate the neighborhood information simply execute the following command
38
```c++
0 commit comments