#include <nanoflann.hpp>
| Public Attributes | |
| Node * | child1 | 
| Node * | child2 | 
| Child nodes (both=NULL mean its a leaf node)  More... | |
| union { | |
| struct leaf { | |
| IndexType left | |
| IndexType right | |
| Indices of points in leaf node.  More... | |
| } lr | |
| struct nonleaf { | |
| int divfeat | |
| Dimension used for subdivision.  More... | |
| DistanceType divhigh | |
| The values used for subdivision.  More... | |
| DistanceType divlow | |
| } sub | |
| } | node_type | 
Definition at line 755 of file nanoflann.hpp.
| Node* nanoflann::KDTreeBaseClass< Derived, Distance, DatasetAdaptor, DIM, IndexType >::Node::child1 | 
Definition at line 767 of file nanoflann.hpp.
| Node * nanoflann::KDTreeBaseClass< Derived, Distance, DatasetAdaptor, DIM, IndexType >::Node::child2 | 
Child nodes (both=NULL mean its a leaf node)
Definition at line 767 of file nanoflann.hpp.
| int nanoflann::KDTreeBaseClass< Derived, Distance, DatasetAdaptor, DIM, IndexType >::Node::divfeat | 
Dimension used for subdivision.
Definition at line 763 of file nanoflann.hpp.
| DistanceType nanoflann::KDTreeBaseClass< Derived, Distance, DatasetAdaptor, DIM, IndexType >::Node::divhigh | 
The values used for subdivision.
Definition at line 764 of file nanoflann.hpp.
| DistanceType nanoflann::KDTreeBaseClass< Derived, Distance, DatasetAdaptor, DIM, IndexType >::Node::divlow | 
Definition at line 764 of file nanoflann.hpp.
| IndexType nanoflann::KDTreeBaseClass< Derived, Distance, DatasetAdaptor, DIM, IndexType >::Node::left | 
Definition at line 760 of file nanoflann.hpp.
| struct { ... } ::leaf nanoflann::KDTreeBaseClass< Derived, Distance, DatasetAdaptor, DIM, IndexType >::Node::lr | 
| union { ... } nanoflann::KDTreeBaseClass< Derived, Distance, DatasetAdaptor, DIM, IndexType >::Node::node_type | 
Union used because a node can be either a LEAF node or a non-leaf node, so both data fields are never used simultaneously
| IndexType nanoflann::KDTreeBaseClass< Derived, Distance, DatasetAdaptor, DIM, IndexType >::Node::right | 
Indices of points in leaf node.
Definition at line 760 of file nanoflann.hpp.
| struct { ... } ::nonleaf nanoflann::KDTreeBaseClass< Derived, Distance, DatasetAdaptor, DIM, IndexType >::Node::sub |