ActiViz .NET
5.8.0
|
vtkImplicitVolume - treat a volume as if it were an implicit function More...
Public Member Functions | |
vtkImplicitVolume (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkImplicitVolume () | |
Description Construct an vtkImplicitVolume with no initial volume; the OutValue set to a large negative number; and the OutGradient set to (0,0,1). | |
override double | EvaluateFunction (IntPtr x) |
Description Evaluate the ImplicitVolume. This returns the interpolated scalar value at x[3]. | |
new double | EvaluateFunction (double x, double y, double z) |
Description Evaluate the ImplicitVolume. This returns the interpolated scalar value at x[3]. | |
override void | EvaluateGradient (IntPtr x, IntPtr n) |
Description Evaluate ImplicitVolume gradient. | |
override uint | GetMTime () |
Returns the mtime also considering the volume. This also calls Update on the volume, and it therefore must be called before the function is evaluated. | |
virtual double[] | GetOutGradient () |
Set the function gradient to use for points outside of the dataset. | |
virtual void | GetOutGradient (ref double _arg1, ref double _arg2, ref double _arg3) |
Set the function gradient to use for points outside of the dataset. | |
virtual void | GetOutGradient (IntPtr _arg) |
Set the function gradient to use for points outside of the dataset. | |
virtual double | GetOutValue () |
Set the function value to use for points outside of the dataset. | |
virtual vtkImageData | GetVolume () |
Specify the volume for the implicit function. | |
override int | IsA (string type) |
Undocumented Block. | |
new vtkImplicitVolume | NewInstance () |
Undocumented Block. | |
virtual void | SetOutGradient (double _arg1, double _arg2, double _arg3) |
Set the function gradient to use for points outside of the dataset. | |
virtual void | SetOutGradient (IntPtr _arg) |
Set the function gradient to use for points outside of the dataset. | |
virtual void | SetOutValue (double _arg) |
Set the function value to use for points outside of the dataset. | |
virtual void | SetVolume (vtkImageData arg0) |
Specify the volume for the implicit function. | |
Static Public Member Functions | |
static new vtkImplicitVolume | New () |
Description Construct an vtkImplicitVolume with no initial volume; 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 vtkImplicitVolume | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkImplicitVolume" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "17vtkImplicitVolume" |
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 | vtkImplicitVolume_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal double | vtkImplicitVolume_EvaluateFunction_01 (HandleRef pThis, IntPtr x) |
static internal double | vtkImplicitVolume_EvaluateFunction_02 (HandleRef pThis, double x, double y, double z) |
static internal void | vtkImplicitVolume_EvaluateGradient_03 (HandleRef pThis, IntPtr x, IntPtr n) |
static internal uint | vtkImplicitVolume_GetMTime_04 (HandleRef pThis) |
static internal IntPtr | vtkImplicitVolume_GetOutGradient_05 (HandleRef pThis) |
static internal void | vtkImplicitVolume_GetOutGradient_06 (HandleRef pThis, ref double _arg1, ref double _arg2, ref double _arg3) |
static internal void | vtkImplicitVolume_GetOutGradient_07 (HandleRef pThis, IntPtr _arg) |
static internal double | vtkImplicitVolume_GetOutValue_08 (HandleRef pThis) |
static internal IntPtr | vtkImplicitVolume_GetVolume_09 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkImplicitVolume_IsA_10 (HandleRef pThis, string type) |
static internal int | vtkImplicitVolume_IsTypeOf_11 (string type) |
static internal IntPtr | vtkImplicitVolume_NewInstance_13 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkImplicitVolume_SafeDownCast_14 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkImplicitVolume_SetOutGradient_15 (HandleRef pThis, double _arg1, double _arg2, double _arg3) |
static internal void | vtkImplicitVolume_SetOutGradient_16 (HandleRef pThis, IntPtr _arg) |
static internal void | vtkImplicitVolume_SetOutValue_17 (HandleRef pThis, double _arg) |
static internal void | vtkImplicitVolume_SetVolume_18 (HandleRef pThis, HandleRef arg0) |
Static Private Member Functions | |
static | vtkImplicitVolume () |
Automatically generated type registration mechanics. |
vtkImplicitVolume - treat a volume as if it were an implicit function
Description vtkImplicitVolume treats a volume (e.g., structured point dataset) as if it were an implicit function. This means it computes a function value and gradient. vtkImplicitVolume 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.vtkImplicitVolume.vtkImplicitVolume | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Description Construct an vtkImplicitVolume with no initial volume; the OutValue set to a large negative number; and the OutGradient set to (0,0,1).
override void Kitware.VTK.vtkImplicitVolume.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.vtkImplicitVolume.EvaluateFunction | ( | IntPtr | x | ) | [virtual] |
Description Evaluate the ImplicitVolume. This returns the interpolated scalar value at x[3].
Reimplemented from Kitware.VTK.vtkImplicitFunction.
new double Kitware.VTK.vtkImplicitVolume.EvaluateFunction | ( | double | x, |
double | y, | ||
double | z | ||
) |
Description Evaluate the ImplicitVolume. This returns the interpolated scalar value at x[3].
Reimplemented from Kitware.VTK.vtkImplicitFunction.
override void Kitware.VTK.vtkImplicitVolume.EvaluateGradient | ( | IntPtr | x, |
IntPtr | n | ||
) | [virtual] |
Description Evaluate ImplicitVolume gradient.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
override uint Kitware.VTK.vtkImplicitVolume.GetMTime | ( | ) | [virtual] |
Returns the mtime also considering the volume. This also calls Update on the volume, and it therefore must be called before the function is evaluated.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
virtual double [] Kitware.VTK.vtkImplicitVolume.GetOutGradient | ( | ) | [virtual] |
Set the function gradient to use for points outside of the dataset.
virtual void Kitware.VTK.vtkImplicitVolume.GetOutGradient | ( | ref double | _arg1, |
ref double | _arg2, | ||
ref double | _arg3 | ||
) | [virtual] |
Set the function gradient to use for points outside of the dataset.
virtual void Kitware.VTK.vtkImplicitVolume.GetOutGradient | ( | IntPtr | _arg | ) | [virtual] |
Set the function gradient to use for points outside of the dataset.
virtual double Kitware.VTK.vtkImplicitVolume.GetOutValue | ( | ) | [virtual] |
Set the function value to use for points outside of the dataset.
virtual vtkImageData Kitware.VTK.vtkImplicitVolume.GetVolume | ( | ) | [virtual] |
Specify the volume for the implicit function.
override int Kitware.VTK.vtkImplicitVolume.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
static new int Kitware.VTK.vtkImplicitVolume.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
static new vtkImplicitVolume Kitware.VTK.vtkImplicitVolume.New | ( | ) | [static] |
Description Construct an vtkImplicitVolume with no initial volume; 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 vtkImplicitVolume Kitware.VTK.vtkImplicitVolume.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
virtual void Kitware.VTK.vtkImplicitVolume.SetOutGradient | ( | double | _arg1, |
double | _arg2, | ||
double | _arg3 | ||
) | [virtual] |
Set the function gradient to use for points outside of the dataset.
virtual void Kitware.VTK.vtkImplicitVolume.SetOutGradient | ( | IntPtr | _arg | ) | [virtual] |
Set the function gradient to use for points outside of the dataset.
virtual void Kitware.VTK.vtkImplicitVolume.SetOutValue | ( | double | _arg | ) | [virtual] |
Set the function value to use for points outside of the dataset.
virtual void Kitware.VTK.vtkImplicitVolume.SetVolume | ( | vtkImageData | arg0 | ) | [virtual] |
Specify the volume for the implicit function.
static internal double Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_EvaluateFunction_01 | ( | HandleRef | pThis, |
IntPtr | x | ||
) | [private] |
static internal double Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_EvaluateFunction_02 | ( | HandleRef | pThis, |
double | x, | ||
double | y, | ||
double | z | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_EvaluateGradient_03 | ( | HandleRef | pThis, |
IntPtr | x, | ||
IntPtr | n | ||
) | [private] |
static internal uint Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_GetMTime_04 | ( | HandleRef | pThis | ) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_GetOutGradient_05 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_GetOutGradient_06 | ( | HandleRef | pThis, |
ref double | _arg1, | ||
ref double | _arg2, | ||
ref double | _arg3 | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_GetOutGradient_07 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal double Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_GetOutValue_08 | ( | HandleRef | pThis | ) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_GetVolume_09 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal int Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_IsA_10 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_IsTypeOf_11 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_New | ( | ref uint | mteStatus, |
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_NewInstance_13 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_SafeDownCast_14 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_SetOutGradient_15 | ( | HandleRef | pThis, |
double | _arg1, | ||
double | _arg2, | ||
double | _arg3 | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_SetOutGradient_16 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_SetOutValue_17 | ( | HandleRef | pThis, |
double | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitVolume.vtkImplicitVolume_SetVolume_18 | ( | HandleRef | pThis, |
HandleRef | arg0 | ||
) | [private] |
new readonly string Kitware.VTK.vtkImplicitVolume.MRClassNameKey = "17vtkImplicitVolume" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
new const string Kitware.VTK.vtkImplicitVolume.MRFullTypeName = "Kitware.VTK.vtkImplicitVolume" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkImplicitFunction.