Jet
v1.3.3
|
KdTree-based 3-D point searcher. More...
#include <jet/point_kdtree_searcher3.h>
Classes | |
class | Builder |
Front-end to create PointKdTreeSearcher3 objects step by step. More... | |
Public Member Functions | |
PointKdTreeSearcher3 () | |
Constructs an empty kD-tree instance. More... | |
PointKdTreeSearcher3 (const PointKdTreeSearcher3 &other) | |
Copy constructor. More... | |
void | build (const ConstArrayAccessor1< Vector3D > &points) override |
Builds internal acceleration structure for given points list. More... | |
void | forEachNearbyPoint (const Vector3D &origin, double radius, const ForEachNearbyPointFunc &callback) const override |
bool | hasNearbyPoint (const Vector3D &origin, double radius) const override |
PointNeighborSearcher3Ptr | clone () const override |
Creates a new instance of the object with same properties than original. More... | |
PointKdTreeSearcher3 & | operator= (const PointKdTreeSearcher3 &other) |
Assignment operator. More... | |
void | set (const PointKdTreeSearcher3 &other) |
Copy from the other instance. More... | |
void | serialize (std::vector< uint8_t > *buffer) const override |
Serializes the neighbor searcher into the buffer. More... | |
void | deserialize (const std::vector< uint8_t > &buffer) override |
Deserializes the neighbor searcher from the buffer. More... | |
![]() | |
PointNeighborSearcher3 () | |
Default constructor. More... | |
virtual | ~PointNeighborSearcher3 () |
Destructor. More... | |
virtual std::string | typeName () const =0 |
Returns the type name of the derived class. More... | |
![]() | |
Serializable ()=default | |
virtual | ~Serializable ()=default |
Static Public Member Functions | |
static Builder | builder () |
Returns builder fox PointKdTreeSearcher3. More... | |
Additional Inherited Members | |
![]() | |
typedef std::function< void(size_t, const Vector3D &)> | ForEachNearbyPointFunc |
KdTree-based 3-D point searcher.
This class implements 3-D point searcher by using KdTree for its internal acceleration data structure.
jet::PointKdTreeSearcher3::PointKdTreeSearcher3 | ( | ) |
Constructs an empty kD-tree instance.
jet::PointKdTreeSearcher3::PointKdTreeSearcher3 | ( | const PointKdTreeSearcher3 & | other | ) |
Copy constructor.
|
overridevirtual |
Builds internal acceleration structure for given points list.
Implements jet::PointNeighborSearcher3.
|
static |
Returns builder fox PointKdTreeSearcher3.
|
overridevirtual |
Creates a new instance of the object with same properties than original.
Implements jet::PointNeighborSearcher3.
|
overridevirtual |
Deserializes the neighbor searcher from the buffer.
Implements jet::Serializable.
|
overridevirtual |
Invokes the callback function for each nearby point around the origin within given radius.
[in] | origin | The origin position. |
[in] | radius | The search radius. |
[in] | callback | The callback function. |
Implements jet::PointNeighborSearcher3.
|
overridevirtual |
Returns true if there are any nearby points for given origin within radius.
[in] | origin | The origin. |
[in] | radius | The radius. |
Implements jet::PointNeighborSearcher3.
PointKdTreeSearcher3& jet::PointKdTreeSearcher3::operator= | ( | const PointKdTreeSearcher3 & | other | ) |
Assignment operator.
|
overridevirtual |
Serializes the neighbor searcher into the buffer.
Implements jet::Serializable.
void jet::PointKdTreeSearcher3::set | ( | const PointKdTreeSearcher3 & | other | ) |
Copy from the other instance.