CubbyFlow::PointNeighborSearcher3 Class Referenceabstract

Abstract base class for 3-D neighbor point searcher. More...

#include <Core/Searcher/PointNeighborSearcher3.h>

Inheritance diagram for CubbyFlow::PointNeighborSearcher3:
CubbyFlow::Serializable CubbyFlow::PointHashGridSearcher3 CubbyFlow::PointKdTreeSearcher3 CubbyFlow::PointParallelHashGridSearcher3 CubbyFlow::PointSimpleListSearcher3

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< PointNeighborSearcher3Clone () 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 CubbyFlow::PointNeighborSearcher3::~PointNeighborSearcher3 ( )
virtual

Destructor.

Member Function Documentation

◆ Build()

virtual void CubbyFlow::PointNeighborSearcher3::Build ( const ConstArrayAccessor1< Vector3D > &  points)
pure virtual

◆ Clone()

virtual std::shared_ptr<PointNeighborSearcher3> CubbyFlow::PointNeighborSearcher3::Clone ( ) const
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()

virtual void CubbyFlow::PointNeighborSearcher3::ForEachNearbyPoint ( const Vector3D origin,
double  radius,
const ForEachNearbyPointFunc callback 
) const
pure virtual

Invokes the callback function for each nearby point around the origin within given radius.

Parameters
[in]originThe origin position.
[in]radiusThe search radius.
[in]callbackThe callback function.

Implemented in CubbyFlow::PointParallelHashGridSearcher3, CubbyFlow::PointHashGridSearcher3, CubbyFlow::PointSimpleListSearcher3, and CubbyFlow::PointKdTreeSearcher3.

◆ HasNearbyPoint()

virtual bool CubbyFlow::PointNeighborSearcher3::HasNearbyPoint ( const Vector3D origin,
double  radius 
) const
pure virtual

Returns true if there are any nearby points for given origin within radius.

Parameters
[in]originThe origin.
[in]radiusThe radius.
Returns
True if has nearby point, false otherwise.

Implemented in CubbyFlow::PointParallelHashGridSearcher3, CubbyFlow::PointHashGridSearcher3, CubbyFlow::PointSimpleListSearcher3, and CubbyFlow::PointKdTreeSearcher3.

◆ TypeName()

virtual std::string CubbyFlow::PointNeighborSearcher3::TypeName ( ) const
pure virtual

Returns the type name of the derived class.


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