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

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

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

List of all members.

Public Member Functions

 vtkHyperOctreeDualGridContourFilter (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkHyperOctreeDualGridContourFilter ()
 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
vtkHyperOctreeDualGridContourFilter 
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
vtkHyperOctreeDualGridContourFilter 
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
vtkHyperOctreeDualGridContourFilter 
SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "35vtkHyperOctreeDualGridContourFilter"
 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 vtkHyperOctreeDualGridContourFilter_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkHyperOctreeDualGridContourFilter_CreateDefaultLocator_01 (HandleRef pThis)
static internal void vtkHyperOctreeDualGridContourFilter_GenerateValues_02 (HandleRef pThis, int numContours, IntPtr range)
static internal void vtkHyperOctreeDualGridContourFilter_GenerateValues_03 (HandleRef pThis, int numContours, double rangeStart, double rangeEnd)
static internal IntPtr vtkHyperOctreeDualGridContourFilter_GetLocator_04 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal uint vtkHyperOctreeDualGridContourFilter_GetMTime_05 (HandleRef pThis)
static internal int vtkHyperOctreeDualGridContourFilter_GetNumberOfContours_06 (HandleRef pThis)
static internal double vtkHyperOctreeDualGridContourFilter_GetValue_07 (HandleRef pThis, int i)
static internal IntPtr vtkHyperOctreeDualGridContourFilter_GetValues_08 (HandleRef pThis)
static internal void vtkHyperOctreeDualGridContourFilter_GetValues_09 (HandleRef pThis, IntPtr contourValues)
static internal int vtkHyperOctreeDualGridContourFilter_IsA_10 (HandleRef pThis, string type)
static internal int vtkHyperOctreeDualGridContourFilter_IsTypeOf_11 (string type)
static internal IntPtr vtkHyperOctreeDualGridContourFilter_NewInstance_13 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkHyperOctreeDualGridContourFilter_SafeDownCast_14 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkHyperOctreeDualGridContourFilter_SetLocator_15 (HandleRef pThis, HandleRef locator)
static internal void vtkHyperOctreeDualGridContourFilter_SetNumberOfContours_16 (HandleRef pThis, int number)
static internal void vtkHyperOctreeDualGridContourFilter_SetValue_17 (HandleRef pThis, int i, double value)

Static Private Member Functions

static vtkHyperOctreeDualGridContourFilter ()
 Automatically generated type registration mechanics.

Detailed Description

vtkHyperOctreeDualGridContourFilter - generate isosurfaces/isolines from scalar values

Description use of unsigned short to hold level index limits tree depth to 16.

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.vtkHyperOctreeDualGridContourFilter.vtkHyperOctreeDualGridContourFilter ( 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.vtkHyperOctreeDualGridContourFilter.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.vtkHyperOctreeDualGridContourFilter.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.vtkHyperOctreeDualGridContourFilter.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.

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.vtkHyperOctreeDualGridContourFilter.IsA ( string  type) [virtual]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

static new int Kitware.VTK.vtkHyperOctreeDualGridContourFilter.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.

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

static internal void Kitware.VTK.vtkHyperOctreeDualGridContourFilter.vtkHyperOctreeDualGridContourFilter_GenerateValues_02 ( HandleRef  pThis,
int  numContours,
IntPtr  range 
) [private]
static internal void Kitware.VTK.vtkHyperOctreeDualGridContourFilter.vtkHyperOctreeDualGridContourFilter_GenerateValues_03 ( HandleRef  pThis,
int  numContours,
double  rangeStart,
double  rangeEnd 
) [private]
static internal IntPtr Kitware.VTK.vtkHyperOctreeDualGridContourFilter.vtkHyperOctreeDualGridContourFilter_GetLocator_04 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal double Kitware.VTK.vtkHyperOctreeDualGridContourFilter.vtkHyperOctreeDualGridContourFilter_GetValue_07 ( HandleRef  pThis,
int  i 
) [private]
static internal void Kitware.VTK.vtkHyperOctreeDualGridContourFilter.vtkHyperOctreeDualGridContourFilter_GetValues_09 ( HandleRef  pThis,
IntPtr  contourValues 
) [private]
static internal int Kitware.VTK.vtkHyperOctreeDualGridContourFilter.vtkHyperOctreeDualGridContourFilter_IsA_10 ( HandleRef  pThis,
string  type 
) [private]
static internal IntPtr Kitware.VTK.vtkHyperOctreeDualGridContourFilter.vtkHyperOctreeDualGridContourFilter_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkHyperOctreeDualGridContourFilter.vtkHyperOctreeDualGridContourFilter_NewInstance_13 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkHyperOctreeDualGridContourFilter.vtkHyperOctreeDualGridContourFilter_SafeDownCast_14 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkHyperOctreeDualGridContourFilter.vtkHyperOctreeDualGridContourFilter_SetLocator_15 ( HandleRef  pThis,
HandleRef  locator 
) [private]
static internal void Kitware.VTK.vtkHyperOctreeDualGridContourFilter.vtkHyperOctreeDualGridContourFilter_SetNumberOfContours_16 ( HandleRef  pThis,
int  number 
) [private]
static internal void Kitware.VTK.vtkHyperOctreeDualGridContourFilter.vtkHyperOctreeDualGridContourFilter_SetValue_17 ( HandleRef  pThis,
int  i,
double  value 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkHyperOctreeDualGridContourFilter.MRClassNameKey = "35vtkHyperOctreeDualGridContourFilter" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPolyDataAlgorithm.


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