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

vtkHyperOctreeContourFilter - generate isosurfaces/isolines from scalar values More...

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

List of all members.

Public Member Functions

 vtkHyperOctreeContourFilter (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkHyperOctreeContourFilter ()
 Construct object with initial range (0,1) and single contour value of 0.0.
void CreateDefaultLocator ()
 Create default locator. Used to create one when none is specified. The locator is used to merge coincident points.
void GenerateValues (int numContours, IntPtr range)
 Generate numContours equally spaced contour values between specified range. Contour values will include min/max range values.
void GenerateValues (int numContours, double rangeStart, double rangeEnd)
 Generate numContours equally spaced contour values between specified range. Contour values will include min/max range values.
virtual vtkIncrementalPointLocator GetLocator ()
 Set / get a spatial locator for merging points. By default, an instance of vtkMergePoints is used.
override uint GetMTime ()
 Modified GetMTime Because we delegate to vtkContourValues.
int GetNumberOfContours ()
 Get the number of contours in the list of contour values.
double GetValue (int i)
 Get the ith contour value.
IntPtr GetValues ()
 Get a pointer to an array of contour values. There will be GetNumberOfContours() values in the list.
void GetValues (IntPtr contourValues)
 Fill a supplied list with contour values. There will be GetNumberOfContours() values in the list. Make sure you allocate enough memory to hold the list.
override int IsA (string type)
 Undocumented Block.
new vtkHyperOctreeContourFilter NewInstance ()
 Undocumented Block.
void SetLocator (vtkIncrementalPointLocator locator)
 Set / get a spatial locator for merging points. By default, an instance of vtkMergePoints is used.
void SetNumberOfContours (int number)
 Set the number of contours to place into the list. You only really need to use this method to reduce list size. The method SetValue() will automatically increase list size as needed.
void SetValue (int i, double value)
 Set a particular contour value at contour number i. The index i ranges between 0<=i<NumberOfContours.

Static Public Member Functions

static new
vtkHyperOctreeContourFilter 
New ()
 Construct object with initial range (0,1) and single contour value of 0.0.
static new int IsTypeOf (string type)
 Undocumented Block.
static new
vtkHyperOctreeContourFilter 
SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "27vtkHyperOctreeContourFilter"
 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 vtkHyperOctreeContourFilter_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkHyperOctreeContourFilter_CreateDefaultLocator_01 (HandleRef pThis)
static internal void vtkHyperOctreeContourFilter_GenerateValues_02 (HandleRef pThis, int numContours, IntPtr range)
static internal void vtkHyperOctreeContourFilter_GenerateValues_03 (HandleRef pThis, int numContours, double rangeStart, double rangeEnd)
static internal IntPtr vtkHyperOctreeContourFilter_GetLocator_04 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal uint vtkHyperOctreeContourFilter_GetMTime_05 (HandleRef pThis)
static internal int vtkHyperOctreeContourFilter_GetNumberOfContours_06 (HandleRef pThis)
static internal double vtkHyperOctreeContourFilter_GetValue_07 (HandleRef pThis, int i)
static internal IntPtr vtkHyperOctreeContourFilter_GetValues_08 (HandleRef pThis)
static internal void vtkHyperOctreeContourFilter_GetValues_09 (HandleRef pThis, IntPtr contourValues)
static internal int vtkHyperOctreeContourFilter_IsA_10 (HandleRef pThis, string type)
static internal int vtkHyperOctreeContourFilter_IsTypeOf_11 (string type)
static internal IntPtr vtkHyperOctreeContourFilter_NewInstance_13 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkHyperOctreeContourFilter_SafeDownCast_14 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkHyperOctreeContourFilter_SetLocator_15 (HandleRef pThis, HandleRef locator)
static internal void vtkHyperOctreeContourFilter_SetNumberOfContours_16 (HandleRef pThis, int number)
static internal void vtkHyperOctreeContourFilter_SetValue_17 (HandleRef pThis, int i, double value)

Static Private Member Functions

static vtkHyperOctreeContourFilter ()
 Automatically generated type registration mechanics.

Detailed Description

vtkHyperOctreeContourFilter - generate isosurfaces/isolines from scalar values

Description vtkContourFilter is a filter that takes as input any dataset and generates on output isosurfaces and/or isolines. The exact form of the output depends upon the dimensionality of the input data. Data consisting of 3D cells will generate isosurfaces, data consisting of 2D cells will generate isolines, and data with 1D or 0D cells will generate isopoints. Combinations of output type are possible if the input dimension is mixed.

To use this filter you must specify one or more contour values. You can either use the method SetValue() to specify each contour value, or use GenerateValues() to generate a series of evenly spaced contours. It is also possible to accelerate the operation of this filter (at the cost of extra memory) by using a vtkScalarTree. A scalar tree is used to quickly locate cells that contain a contour surface. This is especially effective if multiple contours are being extracted. If you want to use a scalar tree, invoke the method UseScalarTreeOn().


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

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

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

Construct object with initial range (0,1) and single contour value of 0.0.


Member Function Documentation

Create default locator. Used to create one when none is specified. The locator is used to merge coincident points.

override void Kitware.VTK.vtkHyperOctreeContourFilter.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.vtkPolyDataAlgorithm.

void Kitware.VTK.vtkHyperOctreeContourFilter.GenerateValues ( int  numContours,
IntPtr  range 
)

Generate numContours equally spaced contour values between specified range. Contour values will include min/max range values.

void Kitware.VTK.vtkHyperOctreeContourFilter.GenerateValues ( int  numContours,
double  rangeStart,
double  rangeEnd 
)

Generate numContours equally spaced contour values between specified range. Contour values will include min/max range values.

Set / get a spatial locator for merging points. By default, an instance of vtkMergePoints is used.

Here is the call graph for this function:

Modified GetMTime Because we delegate to vtkContourValues.

Reimplemented from Kitware.VTK.vtkObject.

Get the number of contours in the list of contour values.

Get the ith contour value.

Get a pointer to an array of contour values. There will be GetNumberOfContours() values in the list.

void Kitware.VTK.vtkHyperOctreeContourFilter.GetValues ( IntPtr  contourValues)

Fill a supplied list with contour values. There will be GetNumberOfContours() values in the list. Make sure you allocate enough memory to hold the list.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

Construct object with initial range (0,1) and single contour value of 0.0.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

Here is the call graph for this function:

Set / get a spatial locator for merging points. By default, an instance of vtkMergePoints is used.

Set the number of contours to place into the list. You only really need to use this method to reduce list size. The method SetValue() will automatically increase list size as needed.

void Kitware.VTK.vtkHyperOctreeContourFilter.SetValue ( int  i,
double  value 
)

Set a particular contour value at contour number i. The index i ranges between 0<=i<NumberOfContours.

static internal void Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_GenerateValues_02 ( HandleRef  pThis,
int  numContours,
IntPtr  range 
) [private]
static internal void Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_GenerateValues_03 ( HandleRef  pThis,
int  numContours,
double  rangeStart,
double  rangeEnd 
) [private]
static internal IntPtr Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_GetLocator_04 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal uint Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_GetMTime_05 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_GetValue_07 ( HandleRef  pThis,
int  i 
) [private]
static internal IntPtr Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_GetValues_08 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_GetValues_09 ( HandleRef  pThis,
IntPtr  contourValues 
) [private]
static internal int Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_IsA_10 ( HandleRef  pThis,
string  type 
) [private]
static internal IntPtr Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_NewInstance_13 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_SafeDownCast_14 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_SetLocator_15 ( HandleRef  pThis,
HandleRef  locator 
) [private]
static internal void Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_SetNumberOfContours_16 ( HandleRef  pThis,
int  number 
) [private]
static internal void Kitware.VTK.vtkHyperOctreeContourFilter.vtkHyperOctreeContourFilter_SetValue_17 ( HandleRef  pThis,
int  i,
double  value 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkHyperOctreeContourFilter.MRClassNameKey = "27vtkHyperOctreeContourFilter" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.


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