FreeCAD C++
|
#include <Mod/Mesh/App/Core/Visitor.h>
Abstract base class for point visitors.
Public Member Functions | |
MeshPointVisitor (void) | |
Construction. | |
virtual | ~MeshPointVisitor (void) |
Denstruction. | |
virtual bool | Visit (const MeshPoint &rclPoint, const MeshPoint &rclFrom, unsigned long ulPInd, unsigned long ulLevel)=0 |
|
pure virtual |
Needs to be implemented in sub-classes. rclPoint is the currently visited point with the index ulPInd, rclFrom is the last visited point and ulLevel indicates the ring number around the start point. If true is returned the next iteration is done if there are still point to visit. If false is returned the calling method stops immediately visiting further points.