Abstract base class for 3-D neighbor point searcher. More...
#include <Core/Searcher/PointNeighborSearcher3.h>
Public Types | |
using | ForEachNearbyPointFunc = std::function< void(size_t, const Vector3D &)> |
Public Member Functions | |
PointNeighborSearcher3 () | |
Default constructor. More... | |
virtual | ~PointNeighborSearcher3 () |
Destructor. More... | |
virtual std::string | TypeName () const =0 |
Returns the type name of the derived class. More... | |
virtual void | Build (const ConstArrayAccessor1< Vector3D > &points)=0 |
Builds internal acceleration structure for given points list. More... | |
virtual void | ForEachNearbyPoint (const Vector3D &origin, double radius, const ForEachNearbyPointFunc &callback) const =0 |
virtual bool | HasNearbyPoint (const Vector3D &origin, double radius) const =0 |
virtual std::shared_ptr< PointNeighborSearcher3 > | Clone () const =0 |
Creates a new instance of the object with same properties than original. More... | |
Public Member Functions inherited from CubbyFlow::Serializable | |
virtual void | Serialize (std::vector< uint8_t > *buffer) const =0 |
Serializes this instance into the flat buffer. More... | |
virtual void | Deserialize (const std::vector< uint8_t > &buffer)=0 |
Deserializes this instance from the flat buffer. More... | |
Detailed Description
Abstract base class for 3-D neighbor point searcher.
This class provides interface for 3-D neighbor point searcher. For given list of points, the class builds internal cache to accelerate the search. Once built, the data structure is used to search nearby points for given origin point.
Member Typedef Documentation
◆ ForEachNearbyPointFunc
using CubbyFlow::PointNeighborSearcher3::ForEachNearbyPointFunc = std::function<void(size_t, const Vector3D&)> |
Callback function for nearby search query. The first parameter is the index of the nearby point, and the second is the position of the point.
Constructor & Destructor Documentation
◆ PointNeighborSearcher3()
CubbyFlow::PointNeighborSearcher3::PointNeighborSearcher3 | ( | ) |
Default constructor.
◆ ~PointNeighborSearcher3()
|
virtual |
Destructor.
Member Function Documentation
◆ Build()
|
pure virtual |
Builds internal acceleration structure for given points list.
Implemented in CubbyFlow::PointParallelHashGridSearcher3, CubbyFlow::PointHashGridSearcher3, CubbyFlow::PointSimpleListSearcher3, and CubbyFlow::PointKdTreeSearcher3.
◆ Clone()
|
pure virtual |
Creates a new instance of the object with same properties than original.
- Returns
- Copy of this object.
Implemented in CubbyFlow::PointParallelHashGridSearcher3, CubbyFlow::PointHashGridSearcher3, CubbyFlow::PointSimpleListSearcher3, and CubbyFlow::PointKdTreeSearcher3.
◆ ForEachNearbyPoint()
|
pure virtual |
Invokes the callback function for each nearby point around the origin within given radius.
- Parameters
-
[in] origin The origin position. [in] radius The search radius. [in] callback The callback function.
Implemented in CubbyFlow::PointParallelHashGridSearcher3, CubbyFlow::PointHashGridSearcher3, CubbyFlow::PointSimpleListSearcher3, and CubbyFlow::PointKdTreeSearcher3.
◆ HasNearbyPoint()
|
pure virtual |
Returns true if there are any nearby points for given origin within radius.
- Parameters
-
[in] origin The origin. [in] radius The radius.
- Returns
- True if has nearby point, false otherwise.
Implemented in CubbyFlow::PointParallelHashGridSearcher3, CubbyFlow::PointHashGridSearcher3, CubbyFlow::PointSimpleListSearcher3, and CubbyFlow::PointKdTreeSearcher3.
◆ TypeName()
|
pure virtual |
Returns the type name of the derived class.
The documentation for this class was generated from the following file:
- Core/Searcher/PointNeighborSearcher3.h