ActiViz .NET
5.8.0
|
vtkImplicitHalo - implicit function for an halo More...
Public Member Functions | |
vtkImplicitHalo (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkImplicitHalo () | |
Description Center=(0.0,0.0,0.0), Radius=1.0, FadeOut=0.01. | |
override double | EvaluateFunction (IntPtr x) |
Description Evaluate the equation. | |
virtual new double | EvaluateFunction (double x, double y, double z) |
Description Evaluate the equation. | |
override void | EvaluateGradient (IntPtr x, IntPtr g) |
Description Evaluate normal. Not implemented. | |
virtual double[] | GetCenter () |
Center of the sphere. | |
virtual void | GetCenter (ref double _arg1, ref double _arg2, ref double _arg3) |
Center of the sphere. | |
virtual void | GetCenter (IntPtr _arg) |
Center of the sphere. | |
virtual double | GetFadeOut () |
FadeOut ratio. Valid values are between 0.0 and 1.0. | |
virtual double | GetRadius () |
Radius of the sphere. | |
override int | IsA (string type) |
Description Center=(0.0,0.0,0.0), Radius=1.0, FadeOut=0.01. | |
new vtkImplicitHalo | NewInstance () |
Description Center=(0.0,0.0,0.0), Radius=1.0, FadeOut=0.01. | |
virtual void | SetCenter (double _arg1, double _arg2, double _arg3) |
Center of the sphere. | |
virtual void | SetCenter (IntPtr _arg) |
Center of the sphere. | |
virtual void | SetFadeOut (double _arg) |
FadeOut ratio. Valid values are between 0.0 and 1.0. | |
virtual void | SetRadius (double _arg) |
Radius of the sphere. | |
Static Public Member Functions | |
static new vtkImplicitHalo | New () |
Description Center=(0.0,0.0,0.0), Radius=1.0, FadeOut=0.01. | |
static new int | IsTypeOf (string type) |
Description Center=(0.0,0.0,0.0), Radius=1.0, FadeOut=0.01. | |
static new vtkImplicitHalo | SafeDownCast (vtkObjectBase o) |
Description Center=(0.0,0.0,0.0), Radius=1.0, FadeOut=0.01. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkImplicitHalo" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "15vtkImplicitHalo" |
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 | vtkImplicitHalo_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal double | vtkImplicitHalo_EvaluateFunction_01 (HandleRef pThis, IntPtr x) |
static internal double | vtkImplicitHalo_EvaluateFunction_02 (HandleRef pThis, double x, double y, double z) |
static internal void | vtkImplicitHalo_EvaluateGradient_03 (HandleRef pThis, IntPtr x, IntPtr g) |
static internal IntPtr | vtkImplicitHalo_GetCenter_04 (HandleRef pThis) |
static internal void | vtkImplicitHalo_GetCenter_05 (HandleRef pThis, ref double _arg1, ref double _arg2, ref double _arg3) |
static internal void | vtkImplicitHalo_GetCenter_06 (HandleRef pThis, IntPtr _arg) |
static internal double | vtkImplicitHalo_GetFadeOut_07 (HandleRef pThis) |
static internal double | vtkImplicitHalo_GetRadius_08 (HandleRef pThis) |
static internal int | vtkImplicitHalo_IsA_09 (HandleRef pThis, string type) |
static internal int | vtkImplicitHalo_IsTypeOf_10 (string type) |
static internal IntPtr | vtkImplicitHalo_NewInstance_12 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkImplicitHalo_SafeDownCast_13 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkImplicitHalo_SetCenter_14 (HandleRef pThis, double _arg1, double _arg2, double _arg3) |
static internal void | vtkImplicitHalo_SetCenter_15 (HandleRef pThis, IntPtr _arg) |
static internal void | vtkImplicitHalo_SetFadeOut_16 (HandleRef pThis, double _arg) |
static internal void | vtkImplicitHalo_SetRadius_17 (HandleRef pThis, double _arg) |
Static Private Member Functions | |
static | vtkImplicitHalo () |
Automatically generated type registration mechanics. |
vtkImplicitHalo - implicit function for an halo
Description vtkImplicitHalo evaluates to 1.0 for each position in the sphere of a given center and radius Radius*(1-FadeOut). It evaluates to 0.0 for each position out the sphere of a given Center and radius Radius. It fades out linearly from 1.0 to 0.0 for points in a radius from Radius*(1-FadeOut) to Radius. vtkImplicitHalo is a concrete implementation of vtkImplicitFunction. It is useful as an input to vtkSampleFunction to generate an 2D image of an halo. It is used this way by vtkShadowMapPass. Caveats It does not implement the gradient.
static Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Description Center=(0.0,0.0,0.0), Radius=1.0, FadeOut=0.01.
override void Kitware.VTK.vtkImplicitHalo.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.vtkImplicitHalo.EvaluateFunction | ( | IntPtr | x | ) | [virtual] |
Description Evaluate the equation.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
virtual new double Kitware.VTK.vtkImplicitHalo.EvaluateFunction | ( | double | x, |
double | y, | ||
double | z | ||
) | [virtual] |
Description Evaluate the equation.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
override void Kitware.VTK.vtkImplicitHalo.EvaluateGradient | ( | IntPtr | x, |
IntPtr | g | ||
) | [virtual] |
Description Evaluate normal. Not implemented.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
virtual double [] Kitware.VTK.vtkImplicitHalo.GetCenter | ( | ) | [virtual] |
Center of the sphere.
virtual void Kitware.VTK.vtkImplicitHalo.GetCenter | ( | ref double | _arg1, |
ref double | _arg2, | ||
ref double | _arg3 | ||
) | [virtual] |
Center of the sphere.
virtual void Kitware.VTK.vtkImplicitHalo.GetCenter | ( | IntPtr | _arg | ) | [virtual] |
Center of the sphere.
virtual double Kitware.VTK.vtkImplicitHalo.GetFadeOut | ( | ) | [virtual] |
FadeOut ratio. Valid values are between 0.0 and 1.0.
virtual double Kitware.VTK.vtkImplicitHalo.GetRadius | ( | ) | [virtual] |
Radius of the sphere.
override int Kitware.VTK.vtkImplicitHalo.IsA | ( | string | type | ) | [virtual] |
Description Center=(0.0,0.0,0.0), Radius=1.0, FadeOut=0.01.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
static new int Kitware.VTK.vtkImplicitHalo.IsTypeOf | ( | string | type | ) | [static] |
Description Center=(0.0,0.0,0.0), Radius=1.0, FadeOut=0.01.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
static new vtkImplicitHalo Kitware.VTK.vtkImplicitHalo.New | ( | ) | [static] |
Description Center=(0.0,0.0,0.0), Radius=1.0, FadeOut=0.01.
Reimplemented from Kitware.VTK.vtkObject.
Description Center=(0.0,0.0,0.0), Radius=1.0, FadeOut=0.01.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
static new vtkImplicitHalo Kitware.VTK.vtkImplicitHalo.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Description Center=(0.0,0.0,0.0), Radius=1.0, FadeOut=0.01.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
virtual void Kitware.VTK.vtkImplicitHalo.SetCenter | ( | double | _arg1, |
double | _arg2, | ||
double | _arg3 | ||
) | [virtual] |
Center of the sphere.
virtual void Kitware.VTK.vtkImplicitHalo.SetCenter | ( | IntPtr | _arg | ) | [virtual] |
Center of the sphere.
virtual void Kitware.VTK.vtkImplicitHalo.SetFadeOut | ( | double | _arg | ) | [virtual] |
FadeOut ratio. Valid values are between 0.0 and 1.0.
virtual void Kitware.VTK.vtkImplicitHalo.SetRadius | ( | double | _arg | ) | [virtual] |
Radius of the sphere.
static internal double Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_EvaluateFunction_01 | ( | HandleRef | pThis, |
IntPtr | x | ||
) | [private] |
static internal double Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_EvaluateFunction_02 | ( | HandleRef | pThis, |
double | x, | ||
double | y, | ||
double | z | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_EvaluateGradient_03 | ( | HandleRef | pThis, |
IntPtr | x, | ||
IntPtr | g | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_GetCenter_04 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_GetCenter_05 | ( | HandleRef | pThis, |
ref double | _arg1, | ||
ref double | _arg2, | ||
ref double | _arg3 | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_GetCenter_06 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal double Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_GetFadeOut_07 | ( | HandleRef | pThis | ) | [private] |
static internal double Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_GetRadius_08 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_IsA_09 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_IsTypeOf_10 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_New | ( | ref uint | mteStatus, |
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_NewInstance_12 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_SafeDownCast_13 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_SetCenter_14 | ( | HandleRef | pThis, |
double | _arg1, | ||
double | _arg2, | ||
double | _arg3 | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_SetCenter_15 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_SetFadeOut_16 | ( | HandleRef | pThis, |
double | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkImplicitHalo.vtkImplicitHalo_SetRadius_17 | ( | HandleRef | pThis, |
double | _arg | ||
) | [private] |
new readonly string Kitware.VTK.vtkImplicitHalo.MRClassNameKey = "15vtkImplicitHalo" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkImplicitFunction.
new const string Kitware.VTK.vtkImplicitHalo.MRFullTypeName = "Kitware.VTK.vtkImplicitHalo" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkImplicitFunction.