|
Ponca
93eea5457c48839cb5d16642765afa89fc7cfe66
Point Cloud Analysis library
|
Input iterator to read the KdTreeKNearestQueryBase object.
More...
#include <kdTreeNearestIterator.h>
Collaboration diagram for Ponca::KdTreeNearestIterator< Index >:Public Types | |
| using | iterator_category = std::input_iterator_tag |
| using | difference_type = std::ptrdiff_t |
| using | value_type = Index |
| using | pointer = Index * |
| using | reference = const Index & |
Public Member Functions | |
| KdTreeNearestIterator (Index index) | |
| bool | operator!= (const KdTreeNearestIterator &other) const |
| Inequality operand. | |
| bool | operator== (const KdTreeNearestIterator &other) const |
| Equality operand. | |
| KdTreeNearestIterator & | operator++ () |
| Prefix increment. | |
| KdTreeNearestIterator | operator++ (int) |
| Postfix increment. | |
| void | operator+= (int i) |
| Value increment. | |
| reference | operator* () const |
| Dereference operator. | |
Protected Attributes | |
| Index | m_index {-1} |
Input iterator to read the KdTreeKNearestQueryBase object.
As this is an input iterator, we don't guarantee anything other than reading the values with it. If you need to operate on the values of this iterator with algorithms that relies on forward iterator functionalities, you should copy the index values in an STL-like container.
Definition at line 25 of file kdTreeNearestIterator.h.
| using Ponca::KdTreeNearestIterator< Index >::difference_type = std::ptrdiff_t |
Definition at line 29 of file kdTreeNearestIterator.h.
| using Ponca::KdTreeNearestIterator< Index >::iterator_category = std::input_iterator_tag |
Definition at line 28 of file kdTreeNearestIterator.h.
| using Ponca::KdTreeNearestIterator< Index >::pointer = Index* |
Definition at line 31 of file kdTreeNearestIterator.h.
| using Ponca::KdTreeNearestIterator< Index >::reference = const Index& |
Definition at line 32 of file kdTreeNearestIterator.h.
| using Ponca::KdTreeNearestIterator< Index >::value_type = Index |
Definition at line 30 of file kdTreeNearestIterator.h.
|
inline |
Definition at line 35 of file kdTreeNearestIterator.h.
|
inline |
Inequality operand.
Definition at line 40 of file kdTreeNearestIterator.h.
|
inline |
Dereference operator.
Definition at line 66 of file kdTreeNearestIterator.h.
|
inline |
Prefix increment.
Definition at line 50 of file kdTreeNearestIterator.h.
|
inline |
Postfix increment.
Definition at line 56 of file kdTreeNearestIterator.h.
|
inline |
Value increment.
Definition at line 63 of file kdTreeNearestIterator.h.
|
inline |
Equality operand.
Definition at line 45 of file kdTreeNearestIterator.h.
|
protected |
Definition at line 71 of file kdTreeNearestIterator.h.