#include <vtkMergePoints.h>
Inheritance diagram for vtkMergePoints:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
int | IsInsertedPoint (const float x[3]) |
int | IsInsertedPoint (float x, float y, float z) |
int | InsertUniquePoint (const float x[3], int &ptId) |
Static Public Methods | |
vtkMergePoints * | New () |
int | IsTypeOf (const char *type) |
vtkMergePoints * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkMergePoints () | |
~vtkMergePoints () | |
vtkMergePoints (const vtkMergePoints &) | |
void | operator= (const vtkMergePoints &) |
vtkMergePoints is a locator object to quickly locate points in 3D. The primary difference between vtkMergePoints and its superclass vtkPointLocator is that vtkMergePoints merges precisely coincident points and is therefore much faster.
Definition at line 61 of file vtkMergePoints.h.
|
Definition at line 83 of file vtkMergePoints.h. |
|
Definition at line 84 of file vtkMergePoints.h. |
|
Definition at line 85 of file vtkMergePoints.h. |
|
Construct with automatic computation of divisions, averaging 25 points per bucket. Reimplemented from vtkPointLocator. |
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkPointLocator. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkPointLocator. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkPointLocator. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkPointLocator. |
|
Determine whether point given by x[3] has been inserted into points list. Return id of previously inserted point if this is true, otherwise return -1. Reimplemented from vtkPointLocator. |
|
Determine whether point given by x[3] has been inserted into points list. Return id of previously inserted point if this is true, otherwise return -1. This method is thread safe. Reimplemented from vtkPointLocator. Definition at line 71 of file vtkMergePoints.h. |
|
Determine whether point given by x[3] has been inserted into points list. Return 0 if point was already in the list, otherwise return 1. If the point was not in the list, it will be ADDED. In either case, the id of the point (newly inserted or not) is returned in the ptId argument. Note this combines the functionality of IsInsertedPoint() followed by a call to InsertNextPoint(). Reimplemented from vtkPointLocator. |
|
Definition at line 86 of file vtkMergePoints.h. |