ActiViz .NET
5.8.0
|
vtkImplicitDataSet - treat a dataset as if it were an implicit function More...
Public Member Functions | |
vtkImplicitDataSet (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkImplicitDataSet () | |
Description Construct an vtkImplicitDataSet with no initial dataset; the OutValue set to a large negative number; and the OutGradient set to (0,0,1). | |
override double | EvaluateFunction (IntPtr x) |
Description Evaluate the implicit function. This returns the interpolated scalar value at x[3]. | |
new double | EvaluateFunction (double x, double y, double z) |
Description Evaluate the implicit function. This returns the interpolated scalar value at x[3]. | |
override void | EvaluateGradient (IntPtr x, IntPtr n) |
Description Evaluate implicit function gradient. | |
virtual vtkDataSet | GetDataSet () |
Set / get the dataset used for the implicit function evaluation. | |
override uint | GetMTime () |
Return the MTime also considering the DataSet dependency. | |
virtual double[] | GetOutGradient () |
Set / get the function gradient to use for points outside of the dataset. | |
virtual void | GetOutGradient (ref double _arg1, ref double _arg2, ref double _arg3) |
Set / get the function gradient to use for points outside of the dataset. | |
virtual void | GetOutGradient (IntPtr _arg) |
Set / get the function gradient to use for points outside of the dataset. | |
virtual double | GetOutValue () |
Set / get the function value to use for points outside of the dataset. | |
override int | IsA (string type) |
Undocumented Block. | |
new vtkImplicitDataSet | NewInstance () |
Undocumented Block. | |
virtual void | SetDataSet (vtkDataSet arg0) |
Set / get the dataset used for the implicit function evaluation. | |
virtual void | SetOutGradient (double _arg1, double _arg2, double _arg3) |
Set / get the function gradient to use for points outside of the dataset. | |
virtual void | SetOutGradient (IntPtr _arg) |
Set / get the function gradient to use for points outside of the dataset. | |
virtual void | SetOutValue (double _arg) |
Set / get the function value to use for points outside of the dataset. | |
Static Public Member Functions | |
static new vtkImplicitDataSet | New () |
Description Construct an vtkImplicitDataSet with no initial dataset; the OutValue set to a large negative number; and the OutGradient set to (0,0,1). | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkImplicitDataSet | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkImplicitDataSet" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "18vtkImplicitDataSet" |
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 | vtkImplicitDataSet_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal double | vtkImplicitDataSet_EvaluateFunction_01 (HandleRef pThis, IntPtr x) |
static internal double | vtkImplicitDataSet_EvaluateFunction_02 (HandleRef pThis, double x, double y, double z) |
static internal void | vtkImplicitDataSet_EvaluateGradient_03 (HandleRef pThis, IntPtr x, IntPtr n) |
static internal IntPtr | vtkImplicitDataSet_GetDataSet_04 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal uint | vtkImplicitDataSet_GetMTime_05 (HandleRef pThis) |
static internal IntPtr | vtkImplicitDataSet_GetOutGradient_06 (HandleRef pThis) |
static internal void | vtkImplicitDataSet_GetOutGradient_07 (HandleRef pThis, ref double _arg1, ref double _arg2, ref double _arg3) |
static internal void | vtkImplicitDataSet_GetOutGradient_08 (HandleRef pThis, IntPtr _arg) |
static internal double | vtkImplicitDataSet_GetOutValue_09 (HandleRef pThis) |
static internal int | vtkImplicitDataSet_IsA_10 (HandleRef pThis, string type) |
static internal int | vtkImplicitDataSet_IsTypeOf_11 (string type) |
static internal IntPtr | vtkImplicitDataSet_NewInstance_13 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkImplicitDataSet_SafeDownCast_14 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkImplicitDataSet_SetDataSet_15 (HandleRef pThis, HandleRef arg0) |
static internal void | vtkImplicitDataSet_SetOutGradient_16 (HandleRef pThis, double _arg1, double _arg2, double _arg3) |
static internal void | vtkImplicitDataSet_SetOutGradient_17 (HandleRef pThis, IntPtr _arg) |
static internal void | vtkImplicitDataSet_SetOutValue_18 (HandleRef pThis, double _arg) |
Static Private Member Functions | |
static | vtkImplicitDataSet () |
Automatically generated type registration mechanics. |
vtkImplicitDataSet - treat a dataset as if it were an implicit function
Description vtkImplicitDataSet treats any type of dataset as if it were an implicit function. This means it computes a function value and gradient. vtkImplicitDataSet is a concrete implementation of vtkImplicitFunction.
vtkImplicitDataSet computes the function (at the point x) by performing cell interpolation. That is, it finds the cell containing x, and then uses the cell's interpolation functions to compute an interpolated scalar value at x. (A similar approach is used to find the gradient, if requested.) Points outside of the dataset are assigned the value of the ivar OutValue, and the gradient value OutGradient.
static Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Description Construct an vtkImplicitDataSet with no initial dataset; the OutValue set to a large negative number; and the OutGradient set to (0,0,1).
override void Kitware.VTK.vtkImplicitDataSet.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.vtkImplicitFunction.
override double Kitware.VTK.vtkImplicitDataSet.EvaluateFunction | ( | IntPtr | x | ) | [virtual] |
Description Evaluate the implicit function. This returns the interpolated scalar value at x[3].
Reimplemented from Kitware.VTK.vtkImplicitFunction.
new double Kitware.VTK.vtkImplicitDataSet.EvaluateFunction | ( | double | x, |
double | y, | ||
double | z | ||
) |
Description Evaluate the implicit function. This returns the interpolated scalar value at x[3].
Reimplemented from Kitware.VTK.vtkImplicitFunction.
override void Kitware.VTK.vtkImplicitDataSet.EvaluateGradient | ( | IntPtr | x, |
IntPtr | n | ||
) | [virtual] |
Description Evaluate implicit function gradient.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
virtual vtkDataSet Kitware.VTK.vtkImplicitDataSet.GetDataSet | ( | ) | [virtual] |
Set / get the dataset used for the implicit function evaluation.
override uint Kitware.VTK.vtkImplicitDataSet.GetMTime | ( | ) | [virtual] |
Return the MTime also considering the DataSet dependency.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
virtual double [] Kitware.VTK.vtkImplicitDataSet.GetOutGradient | ( | ) | [virtual] |
Set / get the function gradient to use for points outside of the dataset.
virtual void Kitware.VTK.vtkImplicitDataSet.GetOutGradient | ( | ref double | _arg1, |
ref double | _arg2, | ||
ref double | _arg3 | ||
) | [virtual] |
Set / get the function gradient to use for points outside of the dataset.
virtual void Kitware.VTK.vtkImplicitDataSet.GetOutGradient | ( | IntPtr | _arg | ) | [virtual] |
Set / get the function gradient to use for points outside of the dataset.
virtual double Kitware.VTK.vtkImplicitDataSet.GetOutValue | ( | ) | [virtual] |
Set / get the function value to use for points outside of the dataset.
override int Kitware.VTK.vtkImplicitDataSet.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
static new int Kitware.VTK.vtkImplicitDataSet.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
static new vtkImplicitDataSet Kitware.VTK.vtkImplicitDataSet.New | ( | ) | [static] |
Description Construct an vtkImplicitDataSet with no initial dataset; the OutValue set to a large negative number; and the OutGradient set to (0,0,1).
Reimplemented from Kitware.VTK.vtkObject.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
static new vtkImplicitDataSet Kitware.VTK.vtkImplicitDataSet.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
virtual void Kitware.VTK.vtkImplicitDataSet.SetDataSet | ( | vtkDataSet | arg0 | ) | [virtual] |
Set / get the dataset used for the implicit function evaluation.
virtual void Kitware.VTK.vtkImplicitDataSet.SetOutGradient | ( | double | _arg1, |
double | _arg2, | ||
double | _arg3 | ||
) | [virtual] |
Set / get the function gradient to use for points outside of the dataset.
virtual void Kitware.VTK.vtkImplicitDataSet.SetOutGradient | ( | IntPtr | _arg | ) | [virtual] |
Set / get the function gradient to use for points outside of the dataset.
virtual void Kitware.VTK.vtkImplicitDataSet.SetOutValue | ( | double | _arg | ) | [virtual] |
Set / get the function value to use for points outside of the dataset.
static internal double Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_EvaluateFunction_01 | ( | HandleRef | pThis, |
IntPtr | x | ||
) | [private] |
static internal double Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_EvaluateFunction_02 | ( | HandleRef | pThis, |
double | x, | ||
double | y, | ||
double | z | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_EvaluateGradient_03 | ( | HandleRef | pThis, |
IntPtr | x, | ||
IntPtr | n | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_GetDataSet_04 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal uint Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_GetMTime_05 | ( | HandleRef | pThis | ) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_GetOutGradient_06 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_GetOutGradient_07 | ( | HandleRef | pThis, |
ref double | _arg1, | ||
ref double | _arg2, | ||
ref double | _arg3 | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_GetOutGradient_08 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal double Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_GetOutValue_09 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_IsA_10 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_IsTypeOf_11 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_New | ( | ref uint | mteStatus, |
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_NewInstance_13 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_SafeDownCast_14 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_SetDataSet_15 | ( | HandleRef | pThis, |
HandleRef | arg0 | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_SetOutGradient_16 | ( | HandleRef | pThis, |
double | _arg1, | ||
double | _arg2, | ||
double | _arg3 | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_SetOutGradient_17 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitDataSet.vtkImplicitDataSet_SetOutValue_18 | ( | HandleRef | pThis, |
double | _arg | ||
) | [private] |
new readonly string Kitware.VTK.vtkImplicitDataSet.MRClassNameKey = "18vtkImplicitDataSet" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
new const string Kitware.VTK.vtkImplicitDataSet.MRFullTypeName = "Kitware.VTK.vtkImplicitDataSet" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkImplicitFunction.