Skip to content

Commit

Permalink
fixed typo in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseAntFer authored Nov 19, 2020
1 parent f8f4e8c commit b8c41fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ An arbitrary number of point clouds can then be added to the data structure usin
std::vector<std::array<Real, 3>> point_set_1;
std::vector<std::array<Real, 3>> point_set_2;
unsigned int point_set_1_id = nsearch.add_point_set(positions.front().data(), positions.size());
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());
```
In order to generate the neighborhood information simply execute the following command
```c++
Expand Down

0 comments on commit b8c41fc

Please sign in to comment.