ActiViz .NET  5.8.0
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkPointLocator Class Reference

vtkPointLocator - quickly locate points in 3-space More...

Inheritance diagram for Kitware.VTK.vtkPointLocator:
[legend]
Collaboration diagram for Kitware.VTK.vtkPointLocator:
[legend]

List of all members.

Public Member Functions

 vtkPointLocator (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkPointLocator ()
 Construct with automatic computation of divisions, averaging 25 points per bucket.
override void BuildLocator ()
 See vtkLocator interface documentation. These methods are not thread safe.
override int FindClosestInsertedPoint (IntPtr x)
 Given a position x, return the id of the point closest to it. This method is used when performing incremental point insertion. Note that -1 indicates that no point was found. This method is thread safe if BuildLocator() is directly or indirectly called from a single thread first.
override void FindClosestNPoints (int N, IntPtr x, vtkIdList result)
 Find the closest N points to a position. This returns the closest N points to a position. A faster method could be created that returned N close points to a position, but necessarily the exact N closest. The returned points are sorted from closest to farthest. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first.
override int FindClosestPoint (IntPtr x)
 Given a position x, return the id of the point closest to it. Alternative method requires separate x-y-z values. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first.
override int FindClosestPointWithinRadius (double radius, IntPtr x, ref double dist2)
 Given a position x and a radius r, return the id of the point closest to the point in that radius. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first. dist2 returns the squared distance to the point.
virtual int FindClosestPointWithinRadius (double radius, IntPtr x, double inputDataLength, ref double dist2)
 Given a position x and a radius r, return the id of the point closest to the point in that radius. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first. dist2 returns the squared distance to the point.
virtual void FindDistributedPoints (int N, IntPtr x, vtkIdList result, int M)
 Find the closest points to a position such that each octant of space around the position contains at least N points. Loosely limit the search to a maximum number of points evaluated, M. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first.
virtual void FindDistributedPoints (int N, double x, double y, double z, vtkIdList result, int M)
 Find the closest points to a position such that each octant of space around the position contains at least N points. Loosely limit the search to a maximum number of points evaluated, M. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first.
override void FindPointsWithinRadius (double R, IntPtr x, vtkIdList result)
 Find all points within a specified radius R of position x. The result is not sorted in any specific manner. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first.
override void FreeSearchStructure ()
 See vtkLocator interface documentation. These methods are not thread safe.
override void GenerateRepresentation (int level, vtkPolyData pd)
 See vtkLocator interface documentation. These methods are not thread safe.
virtual int[] GetDivisions ()
 Set the number of divisions in x-y-z directions.
virtual void GetDivisions (IntPtr data)
 Set the number of divisions in x-y-z directions.
virtual int GetNumberOfPointsPerBucket ()
 Specify the average number of points in each bucket.
virtual int GetNumberOfPointsPerBucketMaxValue ()
 Specify the average number of points in each bucket.
virtual int GetNumberOfPointsPerBucketMinValue ()
 Specify the average number of points in each bucket.
virtual vtkPoints GetPoints ()
 Provide an accessor to the points.
virtual vtkIdList GetPointsInBucket (IntPtr x, IntPtr ijk)
 Given a position x, return the list of points in the bucket that contains the point. It is possible that NULL is returned. The user provides an ijk array that is the indices into the locator. This method is thread safe.
override int InitPointInsertion (vtkPoints newPts, IntPtr bounds)
 Initialize the point insertion process. The newPts is an object representing point coordinates into which incremental insertion methods place their data. Bounds are the box that the points lie in. Not thread safe.
override int InitPointInsertion (vtkPoints newPts, IntPtr bounds, int estSize)
 Initialize the point insertion process. The newPts is an object representing point coordinates into which incremental insertion methods place their data. Bounds are the box that the points lie in. Not thread safe.
override void Initialize ()
 See vtkLocator interface documentation. These methods are not thread safe.
override int InsertNextPoint (IntPtr x)
 Incrementally insert a point into search structure. The method returns the insertion location (i.e., point id). You should use the method IsInsertedPoint() to see whether this point has already been inserted (that is, if you desire to prevent duplicate points). Before using this method you must make sure that newPts have been supplied, the bounds has been set properly, and that divs are properly set. (See InitPointInsertion().) Not thread safe.
override void InsertPoint (int ptId, IntPtr x)
 Incrementally insert a point into search structure with a particular index value. You should use the method IsInsertedPoint() to see whether this point has already been inserted (that is, if you desire to prevent duplicate points). Before using this method you must make sure that newPts have been supplied, the bounds has been set properly, and that divs are properly set. (See InitPointInsertion().) Not thread safe.
override int InsertUniquePoint (IntPtr x, ref int ptId)
 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(). This method is not thread safe.
override int IsA (string type)
 Construct with automatic computation of divisions, averaging 25 points per bucket.
override int IsInsertedPoint (double x, double y, double z)
 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.
override int IsInsertedPoint (IntPtr x)
 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.
new vtkPointLocator NewInstance ()
 Construct with automatic computation of divisions, averaging 25 points per bucket.
virtual void SetDivisions (int _arg1, int _arg2, int _arg3)
 Set the number of divisions in x-y-z directions.
virtual void SetDivisions (IntPtr _arg)
 Set the number of divisions in x-y-z directions.
virtual void SetNumberOfPointsPerBucket (int _arg)
 Specify the average number of points in each bucket.

Static Public Member Functions

static new vtkPointLocator New ()
 Construct with automatic computation of divisions, averaging 25 points per bucket.
static new int IsTypeOf (string type)
 Construct with automatic computation of divisions, averaging 25 points per bucket.
static new vtkPointLocator SafeDownCast (vtkObjectBase o)
 Construct with automatic computation of divisions, averaging 25 points per bucket.

Public Attributes

new const string MRFullTypeName = "Kitware.VTK.vtkPointLocator"
 Automatically generated type registration mechanics.

Static Public Attributes

static new readonly string MRClassNameKey = "15vtkPointLocator"
 Automatically generated type registration mechanics.

Protected Member Functions

override void Dispose (bool disposing)
 Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Private Member Functions

static internal IntPtr vtkPointLocator_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkPointLocator_BuildLocator_01 (HandleRef pThis)
static internal int vtkPointLocator_FindClosestInsertedPoint_02 (HandleRef pThis, IntPtr x)
static internal void vtkPointLocator_FindClosestNPoints_03 (HandleRef pThis, int N, IntPtr x, HandleRef result)
static internal int vtkPointLocator_FindClosestPoint_04 (HandleRef pThis, IntPtr x)
static internal int vtkPointLocator_FindClosestPointWithinRadius_05 (HandleRef pThis, double radius, IntPtr x, ref double dist2)
static internal int vtkPointLocator_FindClosestPointWithinRadius_06 (HandleRef pThis, double radius, IntPtr x, double inputDataLength, ref double dist2)
static internal void vtkPointLocator_FindDistributedPoints_07 (HandleRef pThis, int N, IntPtr x, HandleRef result, int M)
static internal void vtkPointLocator_FindDistributedPoints_08 (HandleRef pThis, int N, double x, double y, double z, HandleRef result, int M)
static internal void vtkPointLocator_FindPointsWithinRadius_09 (HandleRef pThis, double R, IntPtr x, HandleRef result)
static internal void vtkPointLocator_FreeSearchStructure_10 (HandleRef pThis)
static internal void vtkPointLocator_GenerateRepresentation_11 (HandleRef pThis, int level, HandleRef pd)
static internal IntPtr vtkPointLocator_GetDivisions_12 (HandleRef pThis)
static internal void vtkPointLocator_GetDivisions_13 (HandleRef pThis, IntPtr data)
static internal int vtkPointLocator_GetNumberOfPointsPerBucket_14 (HandleRef pThis)
static internal int vtkPointLocator_GetNumberOfPointsPerBucketMaxValue_15 (HandleRef pThis)
static internal int vtkPointLocator_GetNumberOfPointsPerBucketMinValue_16 (HandleRef pThis)
static internal IntPtr vtkPointLocator_GetPoints_17 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPointLocator_GetPointsInBucket_18 (HandleRef pThis, IntPtr x, IntPtr ijk, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkPointLocator_InitPointInsertion_19 (HandleRef pThis, HandleRef newPts, IntPtr bounds)
static internal int vtkPointLocator_InitPointInsertion_20 (HandleRef pThis, HandleRef newPts, IntPtr bounds, int estSize)
static internal void vtkPointLocator_Initialize_21 (HandleRef pThis)
static internal int vtkPointLocator_InsertNextPoint_22 (HandleRef pThis, IntPtr x)
static internal void vtkPointLocator_InsertPoint_23 (HandleRef pThis, int ptId, IntPtr x)
static internal int vtkPointLocator_InsertUniquePoint_24 (HandleRef pThis, IntPtr x, ref int ptId)
static internal int vtkPointLocator_IsA_25 (HandleRef pThis, string type)
static internal int vtkPointLocator_IsInsertedPoint_26 (HandleRef pThis, double x, double y, double z)
static internal int vtkPointLocator_IsInsertedPoint_27 (HandleRef pThis, IntPtr x)
static internal int vtkPointLocator_IsTypeOf_28 (string type)
static internal IntPtr vtkPointLocator_NewInstance_30 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPointLocator_SafeDownCast_31 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkPointLocator_SetDivisions_32 (HandleRef pThis, int _arg1, int _arg2, int _arg3)
static internal void vtkPointLocator_SetDivisions_33 (HandleRef pThis, IntPtr _arg)
static internal void vtkPointLocator_SetNumberOfPointsPerBucket_34 (HandleRef pThis, int _arg)

Static Private Member Functions

static vtkPointLocator ()
 Automatically generated type registration mechanics.

Detailed Description

vtkPointLocator - quickly locate points in 3-space

Description vtkPointLocator is a spatial search object to quickly locate points in 3D. vtkPointLocator works by dividing a specified region of space into a regular array of "rectangular" buckets, and then keeping a list of points that lie in each bucket. Typical operation involves giving a position in 3D and finding the closest point.

vtkPointLocator has two distinct methods of interaction. In the first method, you supply it with a dataset, and it operates on the points in the dataset. In the second method, you supply it with an array of points, and the object operates on the array.


Constructor & Destructor Documentation

static Kitware.VTK.vtkPointLocator.vtkPointLocator ( ) [static, private]

Automatically generated type registration mechanics.

Kitware.VTK.vtkPointLocator.vtkPointLocator ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Construct with automatic computation of divisions, averaging 25 points per bucket.


Member Function Documentation

override void Kitware.VTK.vtkPointLocator.BuildLocator ( ) [virtual]

See vtkLocator interface documentation. These methods are not thread safe.

Reimplemented from Kitware.VTK.vtkAbstractPointLocator.

override void Kitware.VTK.vtkPointLocator.Dispose ( bool  disposing) [protected]

Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

Reimplemented in Kitware.VTK.vtkNonMergingPointLocator, and Kitware.VTK.vtkMergePoints.

override int Kitware.VTK.vtkPointLocator.FindClosestInsertedPoint ( IntPtr  x) [virtual]

Given a position x, return the id of the point closest to it. This method is used when performing incremental point insertion. Note that -1 indicates that no point was found. This method is thread safe if BuildLocator() is directly or indirectly called from a single thread first.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

override void Kitware.VTK.vtkPointLocator.FindClosestNPoints ( int  N,
IntPtr  x,
vtkIdList  result 
) [virtual]

Find the closest N points to a position. This returns the closest N points to a position. A faster method could be created that returned N close points to a position, but necessarily the exact N closest. The returned points are sorted from closest to farthest. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first.

Reimplemented from Kitware.VTK.vtkAbstractPointLocator.

override int Kitware.VTK.vtkPointLocator.FindClosestPoint ( IntPtr  x) [virtual]

Given a position x, return the id of the point closest to it. Alternative method requires separate x-y-z values. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first.

Reimplemented from Kitware.VTK.vtkAbstractPointLocator.

override int Kitware.VTK.vtkPointLocator.FindClosestPointWithinRadius ( double  radius,
IntPtr  x,
ref double  dist2 
) [virtual]

Given a position x and a radius r, return the id of the point closest to the point in that radius. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first. dist2 returns the squared distance to the point.

Reimplemented from Kitware.VTK.vtkAbstractPointLocator.

virtual int Kitware.VTK.vtkPointLocator.FindClosestPointWithinRadius ( double  radius,
IntPtr  x,
double  inputDataLength,
ref double  dist2 
) [virtual]

Given a position x and a radius r, return the id of the point closest to the point in that radius. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first. dist2 returns the squared distance to the point.

virtual void Kitware.VTK.vtkPointLocator.FindDistributedPoints ( int  N,
IntPtr  x,
vtkIdList  result,
int  M 
) [virtual]

Find the closest points to a position such that each octant of space around the position contains at least N points. Loosely limit the search to a maximum number of points evaluated, M. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first.

virtual void Kitware.VTK.vtkPointLocator.FindDistributedPoints ( int  N,
double  x,
double  y,
double  z,
vtkIdList  result,
int  M 
) [virtual]

Find the closest points to a position such that each octant of space around the position contains at least N points. Loosely limit the search to a maximum number of points evaluated, M. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first.

override void Kitware.VTK.vtkPointLocator.FindPointsWithinRadius ( double  R,
IntPtr  x,
vtkIdList  result 
) [virtual]

Find all points within a specified radius R of position x. The result is not sorted in any specific manner. These methods are thread safe if BuildLocator() is directly or indirectly called from a single thread first.

Reimplemented from Kitware.VTK.vtkAbstractPointLocator.

See vtkLocator interface documentation. These methods are not thread safe.

Reimplemented from Kitware.VTK.vtkAbstractPointLocator.

override void Kitware.VTK.vtkPointLocator.GenerateRepresentation ( int  level,
vtkPolyData  pd 
) [virtual]

See vtkLocator interface documentation. These methods are not thread safe.

Reimplemented from Kitware.VTK.vtkAbstractPointLocator.

virtual int [] Kitware.VTK.vtkPointLocator.GetDivisions ( ) [virtual]

Set the number of divisions in x-y-z directions.

virtual void Kitware.VTK.vtkPointLocator.GetDivisions ( IntPtr  data) [virtual]

Set the number of divisions in x-y-z directions.

Specify the average number of points in each bucket.

Specify the average number of points in each bucket.

Specify the average number of points in each bucket.

Provide an accessor to the points.

Here is the call graph for this function:

virtual vtkIdList Kitware.VTK.vtkPointLocator.GetPointsInBucket ( IntPtr  x,
IntPtr  ijk 
) [virtual]

Given a position x, return the list of points in the bucket that contains the point. It is possible that NULL is returned. The user provides an ijk array that is the indices into the locator. This method is thread safe.

Here is the call graph for this function:

override void Kitware.VTK.vtkPointLocator.Initialize ( ) [virtual]

See vtkLocator interface documentation. These methods are not thread safe.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

override int Kitware.VTK.vtkPointLocator.InitPointInsertion ( vtkPoints  newPts,
IntPtr  bounds 
) [virtual]

Initialize the point insertion process. The newPts is an object representing point coordinates into which incremental insertion methods place their data. Bounds are the box that the points lie in. Not thread safe.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

override int Kitware.VTK.vtkPointLocator.InitPointInsertion ( vtkPoints  newPts,
IntPtr  bounds,
int  estSize 
) [virtual]

Initialize the point insertion process. The newPts is an object representing point coordinates into which incremental insertion methods place their data. Bounds are the box that the points lie in. Not thread safe.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

override int Kitware.VTK.vtkPointLocator.InsertNextPoint ( IntPtr  x) [virtual]

Incrementally insert a point into search structure. The method returns the insertion location (i.e., point id). You should use the method IsInsertedPoint() to see whether this point has already been inserted (that is, if you desire to prevent duplicate points). Before using this method you must make sure that newPts have been supplied, the bounds has been set properly, and that divs are properly set. (See InitPointInsertion().) Not thread safe.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

override void Kitware.VTK.vtkPointLocator.InsertPoint ( int  ptId,
IntPtr  x 
) [virtual]

Incrementally insert a point into search structure with a particular index value. You should use the method IsInsertedPoint() to see whether this point has already been inserted (that is, if you desire to prevent duplicate points). Before using this method you must make sure that newPts have been supplied, the bounds has been set properly, and that divs are properly set. (See InitPointInsertion().) Not thread safe.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

override int Kitware.VTK.vtkPointLocator.InsertUniquePoint ( IntPtr  x,
ref int  ptId 
) [virtual]

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(). This method is not thread safe.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

Reimplemented in Kitware.VTK.vtkNonMergingPointLocator, and Kitware.VTK.vtkMergePoints.

override int Kitware.VTK.vtkPointLocator.IsA ( string  type) [virtual]

Construct with automatic computation of divisions, averaging 25 points per bucket.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

Reimplemented in Kitware.VTK.vtkNonMergingPointLocator, and Kitware.VTK.vtkMergePoints.

override int Kitware.VTK.vtkPointLocator.IsInsertedPoint ( double  x,
double  y,
double  z 
) [virtual]

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 Kitware.VTK.vtkIncrementalPointLocator.

Reimplemented in Kitware.VTK.vtkNonMergingPointLocator, and Kitware.VTK.vtkMergePoints.

override int Kitware.VTK.vtkPointLocator.IsInsertedPoint ( IntPtr  x) [virtual]

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 Kitware.VTK.vtkIncrementalPointLocator.

Reimplemented in Kitware.VTK.vtkNonMergingPointLocator, and Kitware.VTK.vtkMergePoints.

static new int Kitware.VTK.vtkPointLocator.IsTypeOf ( string  type) [static]

Construct with automatic computation of divisions, averaging 25 points per bucket.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

Reimplemented in Kitware.VTK.vtkNonMergingPointLocator, and Kitware.VTK.vtkMergePoints.

Construct with automatic computation of divisions, averaging 25 points per bucket.

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkNonMergingPointLocator, and Kitware.VTK.vtkMergePoints.

Construct with automatic computation of divisions, averaging 25 points per bucket.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

Reimplemented in Kitware.VTK.vtkNonMergingPointLocator, and Kitware.VTK.vtkMergePoints.

Construct with automatic computation of divisions, averaging 25 points per bucket.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

Reimplemented in Kitware.VTK.vtkNonMergingPointLocator, and Kitware.VTK.vtkMergePoints.

Here is the call graph for this function:

virtual void Kitware.VTK.vtkPointLocator.SetDivisions ( int  _arg1,
int  _arg2,
int  _arg3 
) [virtual]

Set the number of divisions in x-y-z directions.

virtual void Kitware.VTK.vtkPointLocator.SetDivisions ( IntPtr  _arg) [virtual]

Set the number of divisions in x-y-z directions.

virtual void Kitware.VTK.vtkPointLocator.SetNumberOfPointsPerBucket ( int  _arg) [virtual]

Specify the average number of points in each bucket.

static internal void Kitware.VTK.vtkPointLocator.vtkPointLocator_BuildLocator_01 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkPointLocator.vtkPointLocator_FindClosestInsertedPoint_02 ( HandleRef  pThis,
IntPtr  x 
) [private]
static internal void Kitware.VTK.vtkPointLocator.vtkPointLocator_FindClosestNPoints_03 ( HandleRef  pThis,
int  N,
IntPtr  x,
HandleRef  result 
) [private]
static internal int Kitware.VTK.vtkPointLocator.vtkPointLocator_FindClosestPoint_04 ( HandleRef  pThis,
IntPtr  x 
) [private]
static internal int Kitware.VTK.vtkPointLocator.vtkPointLocator_FindClosestPointWithinRadius_05 ( HandleRef  pThis,
double  radius,
IntPtr  x,
ref double  dist2 
) [private]
static internal int Kitware.VTK.vtkPointLocator.vtkPointLocator_FindClosestPointWithinRadius_06 ( HandleRef  pThis,
double  radius,
IntPtr  x,
double  inputDataLength,
ref double  dist2 
) [private]
static internal void Kitware.VTK.vtkPointLocator.vtkPointLocator_FindDistributedPoints_07 ( HandleRef  pThis,
int  N,
IntPtr  x,
HandleRef  result,
int  M 
) [private]
static internal void Kitware.VTK.vtkPointLocator.vtkPointLocator_FindDistributedPoints_08 ( HandleRef  pThis,
int  N,
double  x,
double  y,
double  z,
HandleRef  result,
int  M 
) [private]
static internal void Kitware.VTK.vtkPointLocator.vtkPointLocator_FindPointsWithinRadius_09 ( HandleRef  pThis,
double  R,
IntPtr  x,
HandleRef  result 
) [private]
static internal void Kitware.VTK.vtkPointLocator.vtkPointLocator_FreeSearchStructure_10 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkPointLocator.vtkPointLocator_GenerateRepresentation_11 ( HandleRef  pThis,
int  level,
HandleRef  pd 
) [private]
static internal IntPtr Kitware.VTK.vtkPointLocator.vtkPointLocator_GetDivisions_12 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkPointLocator.vtkPointLocator_GetDivisions_13 ( HandleRef  pThis,
IntPtr  data 
) [private]
static internal int Kitware.VTK.vtkPointLocator.vtkPointLocator_GetNumberOfPointsPerBucket_14 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkPointLocator.vtkPointLocator_GetPoints_17 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPointLocator.vtkPointLocator_GetPointsInBucket_18 ( HandleRef  pThis,
IntPtr  x,
IntPtr  ijk,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkPointLocator.vtkPointLocator_Initialize_21 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkPointLocator.vtkPointLocator_InitPointInsertion_19 ( HandleRef  pThis,
HandleRef  newPts,
IntPtr  bounds 
) [private]
static internal int Kitware.VTK.vtkPointLocator.vtkPointLocator_InitPointInsertion_20 ( HandleRef  pThis,
HandleRef  newPts,
IntPtr  bounds,
int  estSize 
) [private]
static internal int Kitware.VTK.vtkPointLocator.vtkPointLocator_InsertNextPoint_22 ( HandleRef  pThis,
IntPtr  x 
) [private]
static internal void Kitware.VTK.vtkPointLocator.vtkPointLocator_InsertPoint_23 ( HandleRef  pThis,
int  ptId,
IntPtr  x 
) [private]
static internal int Kitware.VTK.vtkPointLocator.vtkPointLocator_InsertUniquePoint_24 ( HandleRef  pThis,
IntPtr  x,
ref int  ptId 
) [private]
static internal int Kitware.VTK.vtkPointLocator.vtkPointLocator_IsA_25 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkPointLocator.vtkPointLocator_IsInsertedPoint_26 ( HandleRef  pThis,
double  x,
double  y,
double  z 
) [private]
static internal int Kitware.VTK.vtkPointLocator.vtkPointLocator_IsInsertedPoint_27 ( HandleRef  pThis,
IntPtr  x 
) [private]
static internal int Kitware.VTK.vtkPointLocator.vtkPointLocator_IsTypeOf_28 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkPointLocator.vtkPointLocator_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPointLocator.vtkPointLocator_NewInstance_30 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPointLocator.vtkPointLocator_SafeDownCast_31 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkPointLocator.vtkPointLocator_SetDivisions_32 ( HandleRef  pThis,
int  _arg1,
int  _arg2,
int  _arg3 
) [private]
static internal void Kitware.VTK.vtkPointLocator.vtkPointLocator_SetDivisions_33 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal void Kitware.VTK.vtkPointLocator.vtkPointLocator_SetNumberOfPointsPerBucket_34 ( HandleRef  pThis,
int  _arg 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkPointLocator.MRClassNameKey = "15vtkPointLocator" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

Reimplemented in Kitware.VTK.vtkNonMergingPointLocator, and Kitware.VTK.vtkMergePoints.

new const string Kitware.VTK.vtkPointLocator.MRFullTypeName = "Kitware.VTK.vtkPointLocator"

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkIncrementalPointLocator.

Reimplemented in Kitware.VTK.vtkNonMergingPointLocator, and Kitware.VTK.vtkMergePoints.


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