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.vtkGenericPointIterator Class Reference

vtkGenericPointIterator - iterator used to traverse points More...

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

List of all members.

Public Member Functions

 vtkGenericPointIterator (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
virtual void Begin ()
 Move iterator to first position if any (loop initialization).
virtual int GetId ()
 Return the unique identifier for the point, could be non-contiguous.
virtual IntPtr GetPosition ()
 Get the coordinates of the point at the current iterator position.
virtual void GetPosition (IntPtr x)
 Get the coordinates of the point at the current iterator position.
override int IsA (string type)
 Standard VTK construction and type macros.
virtual int IsAtEnd ()
 Is the iterator at the end of traversal?
new vtkGenericPointIterator NewInstance ()
 Standard VTK construction and type macros.
virtual void Next ()
 Move the iterator to the next position in the list.

Static Public Member Functions

static new int IsTypeOf (string type)
 Standard VTK construction and type macros.
static new vtkGenericPointIterator SafeDownCast (vtkObjectBase o)
 Standard VTK construction and type macros.

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "23vtkGenericPointIterator"
 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 void vtkGenericPointIterator_Begin_01 (HandleRef pThis)
static internal int vtkGenericPointIterator_GetId_02 (HandleRef pThis)
static internal IntPtr vtkGenericPointIterator_GetPosition_03 (HandleRef pThis)
static internal void vtkGenericPointIterator_GetPosition_04 (HandleRef pThis, IntPtr x)
static internal int vtkGenericPointIterator_IsA_05 (HandleRef pThis, string type)
static internal int vtkGenericPointIterator_IsAtEnd_06 (HandleRef pThis)
static internal int vtkGenericPointIterator_IsTypeOf_07 (string type)
static internal IntPtr vtkGenericPointIterator_NewInstance_08 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkGenericPointIterator_Next_09 (HandleRef pThis)
static internal IntPtr vtkGenericPointIterator_SafeDownCast_10 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)

Static Private Member Functions

static vtkGenericPointIterator ()
 Automatically generated type registration mechanics.

Detailed Description

vtkGenericPointIterator - iterator used to traverse points

Description This class (and subclasses) are used to iterate over points. Use it only in conjunction with vtkGenericDataSet (i.e., the adaptor framework).

Typical use is: <pre> vtkGenericDataSet *dataset; vtkGenericPointIterator *it = dataset->NewPointIterator(); for (it->Begin(); !it->IsAtEnd(); it->Next()); { x=it->GetPosition(); } </pre>


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

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

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


Member Function Documentation

virtual void Kitware.VTK.vtkGenericPointIterator.Begin ( ) [virtual]

Move iterator to first position if any (loop initialization).

override void Kitware.VTK.vtkGenericPointIterator.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.vtkObject.

virtual int Kitware.VTK.vtkGenericPointIterator.GetId ( ) [virtual]

Return the unique identifier for the point, could be non-contiguous.

Precondition:
not_off: !IsAtEnd()

Get the coordinates of the point at the current iterator position.

Precondition:
not_off: !IsAtEnd()
Postcondition:
result_exists: result!=0
virtual void Kitware.VTK.vtkGenericPointIterator.GetPosition ( IntPtr  x) [virtual]

Get the coordinates of the point at the current iterator position.

Precondition:
not_off: !IsAtEnd()
x_exists: x!=0
override int Kitware.VTK.vtkGenericPointIterator.IsA ( string  type) [virtual]

Standard VTK construction and type macros.

Reimplemented from Kitware.VTK.vtkObject.

Is the iterator at the end of traversal?

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

Standard VTK construction and type macros.

Reimplemented from Kitware.VTK.vtkObject.

Standard VTK construction and type macros.

Reimplemented from Kitware.VTK.vtkObject.

virtual void Kitware.VTK.vtkGenericPointIterator.Next ( ) [virtual]

Move the iterator to the next position in the list.

Precondition:
not_off: !IsAtEnd()

Standard VTK construction and type macros.

Reimplemented from Kitware.VTK.vtkObject.

Here is the call graph for this function:

static internal void Kitware.VTK.vtkGenericPointIterator.vtkGenericPointIterator_Begin_01 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkGenericPointIterator.vtkGenericPointIterator_GetId_02 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkGenericPointIterator.vtkGenericPointIterator_GetPosition_03 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkGenericPointIterator.vtkGenericPointIterator_GetPosition_04 ( HandleRef  pThis,
IntPtr  x 
) [private]
static internal int Kitware.VTK.vtkGenericPointIterator.vtkGenericPointIterator_IsA_05 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkGenericPointIterator.vtkGenericPointIterator_IsAtEnd_06 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkGenericPointIterator.vtkGenericPointIterator_IsTypeOf_07 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkGenericPointIterator.vtkGenericPointIterator_NewInstance_08 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkGenericPointIterator.vtkGenericPointIterator_Next_09 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkGenericPointIterator.vtkGenericPointIterator_SafeDownCast_10 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkGenericPointIterator.MRClassNameKey = "23vtkGenericPointIterator" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkObject.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkObject.


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