OpenLB 1.7
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
nanoflann::SearchParams Struct Reference

Search options for KDTreeSingleIndexAdaptor::findNeighbors() More...

#include <nanoflann.hpp>

+ Collaboration diagram for nanoflann::SearchParams:

Public Member Functions

 SearchParams (int checks_IGNORED_=32, float eps_=0, bool sorted_=true)
 Note: The first argument (checks_IGNORED_) is ignored, but kept for compatibility with the FLANN interface.
 

Public Attributes

int checks
 Ignored parameter (Kept for compatibility with the FLANN interface).
 
float eps
 search for eps-approximate neighbours (default: 0)
 
bool sorted
 only for radius search, require neighbours sorted by distance (default: true)
 

Detailed Description

Search options for KDTreeSingleIndexAdaptor::findNeighbors()

Definition at line 484 of file nanoflann.hpp.

Constructor & Destructor Documentation

◆ SearchParams()

nanoflann::SearchParams::SearchParams ( int checks_IGNORED_ = 32,
float eps_ = 0,
bool sorted_ = true )
inline

Note: The first argument (checks_IGNORED_) is ignored, but kept for compatibility with the FLANN interface.

Definition at line 486 of file nanoflann.hpp.

487 : checks(checks_IGNORED_),
488 eps(eps_),
489 sorted(sorted_) {
490 }
bool sorted
only for radius search, require neighbours sorted by distance (default: true)
float eps
search for eps-approximate neighbours (default: 0)
int checks
Ignored parameter (Kept for compatibility with the FLANN interface).

Member Data Documentation

◆ checks

int nanoflann::SearchParams::checks

Ignored parameter (Kept for compatibility with the FLANN interface).

Definition at line 492 of file nanoflann.hpp.

◆ eps

float nanoflann::SearchParams::eps

search for eps-approximate neighbours (default: 0)

Definition at line 493 of file nanoflann.hpp.

◆ sorted

bool nanoflann::SearchParams::sorted

only for radius search, require neighbours sorted by distance (default: true)

Definition at line 494 of file nanoflann.hpp.


The documentation for this struct was generated from the following file: