ActiViz .NET
5.8.0
|
vtkThresholdTextureCoords - compute 1D, 2D, or 3D texture coordinates based on scalar threshold More...
Public Member Functions | |
vtkThresholdTextureCoords (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkThresholdTextureCoords () | |
Undocumented Block. | |
virtual double[] | GetInTextureCoord () |
Set the texture coordinate value for point satisfying threshold criterion. | |
virtual void | GetInTextureCoord (IntPtr data) |
Set the texture coordinate value for point satisfying threshold criterion. | |
virtual double | GetLowerThreshold () |
Return the upper and lower thresholds. | |
virtual double[] | GetOutTextureCoord () |
Set the texture coordinate value for point NOT satisfying threshold criterion. | |
virtual void | GetOutTextureCoord (IntPtr data) |
Set the texture coordinate value for point NOT satisfying threshold criterion. | |
virtual int | GetTextureDimension () |
Set the desired dimension of the texture map. | |
virtual int | GetTextureDimensionMaxValue () |
Set the desired dimension of the texture map. | |
virtual int | GetTextureDimensionMinValue () |
Set the desired dimension of the texture map. | |
virtual double | GetUpperThreshold () |
Return the upper and lower thresholds. | |
override int | IsA (string type) |
Undocumented Block. | |
new vtkThresholdTextureCoords | NewInstance () |
Undocumented Block. | |
virtual void | SetInTextureCoord (double _arg1, double _arg2, double _arg3) |
Set the texture coordinate value for point satisfying threshold criterion. | |
virtual void | SetInTextureCoord (IntPtr _arg) |
Set the texture coordinate value for point satisfying threshold criterion. | |
virtual void | SetOutTextureCoord (double _arg1, double _arg2, double _arg3) |
Set the texture coordinate value for point NOT satisfying threshold criterion. | |
virtual void | SetOutTextureCoord (IntPtr _arg) |
Set the texture coordinate value for point NOT satisfying threshold criterion. | |
virtual void | SetTextureDimension (int _arg) |
Set the desired dimension of the texture map. | |
void | ThresholdBetween (double lower, double upper) |
Criterion is cells whose scalars are between lower and upper thresholds. | |
void | ThresholdByLower (double lower) |
Criterion is cells whose scalars are less than lower threshold. | |
void | ThresholdByUpper (double upper) |
Criterion is cells whose scalars are less than upper threshold. | |
Static Public Member Functions | |
static new vtkThresholdTextureCoords | New () |
Undocumented Block. | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkThresholdTextureCoords | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkThresholdTextureCoords" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "25vtkThresholdTextureCoords" |
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 | vtkThresholdTextureCoords_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkThresholdTextureCoords_GetInTextureCoord_01 (HandleRef pThis) |
static internal void | vtkThresholdTextureCoords_GetInTextureCoord_02 (HandleRef pThis, IntPtr data) |
static internal double | vtkThresholdTextureCoords_GetLowerThreshold_03 (HandleRef pThis) |
static internal IntPtr | vtkThresholdTextureCoords_GetOutTextureCoord_04 (HandleRef pThis) |
static internal void | vtkThresholdTextureCoords_GetOutTextureCoord_05 (HandleRef pThis, IntPtr data) |
static internal int | vtkThresholdTextureCoords_GetTextureDimension_06 (HandleRef pThis) |
static internal int | vtkThresholdTextureCoords_GetTextureDimensionMaxValue_07 (HandleRef pThis) |
static internal int | vtkThresholdTextureCoords_GetTextureDimensionMinValue_08 (HandleRef pThis) |
static internal double | vtkThresholdTextureCoords_GetUpperThreshold_09 (HandleRef pThis) |
static internal int | vtkThresholdTextureCoords_IsA_10 (HandleRef pThis, string type) |
static internal int | vtkThresholdTextureCoords_IsTypeOf_11 (string type) |
static internal IntPtr | vtkThresholdTextureCoords_NewInstance_13 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkThresholdTextureCoords_SafeDownCast_14 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkThresholdTextureCoords_SetInTextureCoord_15 (HandleRef pThis, double _arg1, double _arg2, double _arg3) |
static internal void | vtkThresholdTextureCoords_SetInTextureCoord_16 (HandleRef pThis, IntPtr _arg) |
static internal void | vtkThresholdTextureCoords_SetOutTextureCoord_17 (HandleRef pThis, double _arg1, double _arg2, double _arg3) |
static internal void | vtkThresholdTextureCoords_SetOutTextureCoord_18 (HandleRef pThis, IntPtr _arg) |
static internal void | vtkThresholdTextureCoords_SetTextureDimension_19 (HandleRef pThis, int _arg) |
static internal void | vtkThresholdTextureCoords_ThresholdBetween_20 (HandleRef pThis, double lower, double upper) |
static internal void | vtkThresholdTextureCoords_ThresholdByLower_21 (HandleRef pThis, double lower) |
static internal void | vtkThresholdTextureCoords_ThresholdByUpper_22 (HandleRef pThis, double upper) |
Static Private Member Functions | |
static | vtkThresholdTextureCoords () |
Automatically generated type registration mechanics. |
vtkThresholdTextureCoords - compute 1D, 2D, or 3D texture coordinates based on scalar threshold
Description vtkThresholdTextureCoords is a filter that generates texture coordinates for any input dataset type given a threshold criterion. The criterion can take three forms: 1) greater than a particular value (ThresholdByUpper()); 2) less than a particular value (ThresholdByLower(); or 3) between two values (ThresholdBetween(). If the threshold criterion is satisfied, the "in" texture coordinate will be set (this can be specified by the user). If the threshold criterion is not satisfied the "out" is set.
static Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Undocumented Block.
override void Kitware.VTK.vtkThresholdTextureCoords.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.vtkDataSetAlgorithm.
virtual double [] Kitware.VTK.vtkThresholdTextureCoords.GetInTextureCoord | ( | ) | [virtual] |
Set the texture coordinate value for point satisfying threshold criterion.
virtual void Kitware.VTK.vtkThresholdTextureCoords.GetInTextureCoord | ( | IntPtr | data | ) | [virtual] |
Set the texture coordinate value for point satisfying threshold criterion.
virtual double Kitware.VTK.vtkThresholdTextureCoords.GetLowerThreshold | ( | ) | [virtual] |
Return the upper and lower thresholds.
virtual double [] Kitware.VTK.vtkThresholdTextureCoords.GetOutTextureCoord | ( | ) | [virtual] |
Set the texture coordinate value for point NOT satisfying threshold criterion.
virtual void Kitware.VTK.vtkThresholdTextureCoords.GetOutTextureCoord | ( | IntPtr | data | ) | [virtual] |
Set the texture coordinate value for point NOT satisfying threshold criterion.
virtual int Kitware.VTK.vtkThresholdTextureCoords.GetTextureDimension | ( | ) | [virtual] |
Set the desired dimension of the texture map.
virtual int Kitware.VTK.vtkThresholdTextureCoords.GetTextureDimensionMaxValue | ( | ) | [virtual] |
Set the desired dimension of the texture map.
virtual int Kitware.VTK.vtkThresholdTextureCoords.GetTextureDimensionMinValue | ( | ) | [virtual] |
Set the desired dimension of the texture map.
virtual double Kitware.VTK.vtkThresholdTextureCoords.GetUpperThreshold | ( | ) | [virtual] |
Return the upper and lower thresholds.
override int Kitware.VTK.vtkThresholdTextureCoords.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
static new int Kitware.VTK.vtkThresholdTextureCoords.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
static new vtkThresholdTextureCoords Kitware.VTK.vtkThresholdTextureCoords.New | ( | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
static new vtkThresholdTextureCoords Kitware.VTK.vtkThresholdTextureCoords.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
virtual void Kitware.VTK.vtkThresholdTextureCoords.SetInTextureCoord | ( | double | _arg1, |
double | _arg2, | ||
double | _arg3 | ||
) | [virtual] |
Set the texture coordinate value for point satisfying threshold criterion.
virtual void Kitware.VTK.vtkThresholdTextureCoords.SetInTextureCoord | ( | IntPtr | _arg | ) | [virtual] |
Set the texture coordinate value for point satisfying threshold criterion.
virtual void Kitware.VTK.vtkThresholdTextureCoords.SetOutTextureCoord | ( | double | _arg1, |
double | _arg2, | ||
double | _arg3 | ||
) | [virtual] |
Set the texture coordinate value for point NOT satisfying threshold criterion.
virtual void Kitware.VTK.vtkThresholdTextureCoords.SetOutTextureCoord | ( | IntPtr | _arg | ) | [virtual] |
Set the texture coordinate value for point NOT satisfying threshold criterion.
virtual void Kitware.VTK.vtkThresholdTextureCoords.SetTextureDimension | ( | int | _arg | ) | [virtual] |
Set the desired dimension of the texture map.
void Kitware.VTK.vtkThresholdTextureCoords.ThresholdBetween | ( | double | lower, |
double | upper | ||
) |
Criterion is cells whose scalars are between lower and upper thresholds.
void Kitware.VTK.vtkThresholdTextureCoords.ThresholdByLower | ( | double | lower | ) |
Criterion is cells whose scalars are less than lower threshold.
void Kitware.VTK.vtkThresholdTextureCoords.ThresholdByUpper | ( | double | upper | ) |
Criterion is cells whose scalars are less than upper threshold.
static internal IntPtr Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_GetInTextureCoord_01 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_GetInTextureCoord_02 | ( | HandleRef | pThis, |
IntPtr | data | ||
) | [private] |
static internal double Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_GetLowerThreshold_03 | ( | HandleRef | pThis | ) | [private] |
static internal IntPtr Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_GetOutTextureCoord_04 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_GetOutTextureCoord_05 | ( | HandleRef | pThis, |
IntPtr | data | ||
) | [private] |
static internal int Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_GetTextureDimension_06 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_GetTextureDimensionMaxValue_07 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_GetTextureDimensionMinValue_08 | ( | HandleRef | pThis | ) | [private] |
static internal double Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_GetUpperThreshold_09 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_IsA_10 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_IsTypeOf_11 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_New | ( | ref uint | mteStatus, |
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_NewInstance_13 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_SafeDownCast_14 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_SetInTextureCoord_15 | ( | HandleRef | pThis, |
double | _arg1, | ||
double | _arg2, | ||
double | _arg3 | ||
) | [private] |
static internal void Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_SetInTextureCoord_16 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_SetOutTextureCoord_17 | ( | HandleRef | pThis, |
double | _arg1, | ||
double | _arg2, | ||
double | _arg3 | ||
) | [private] |
static internal void Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_SetOutTextureCoord_18 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_SetTextureDimension_19 | ( | HandleRef | pThis, |
int | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_ThresholdBetween_20 | ( | HandleRef | pThis, |
double | lower, | ||
double | upper | ||
) | [private] |
static internal void Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_ThresholdByLower_21 | ( | HandleRef | pThis, |
double | lower | ||
) | [private] |
static internal void Kitware.VTK.vtkThresholdTextureCoords.vtkThresholdTextureCoords_ThresholdByUpper_22 | ( | HandleRef | pThis, |
double | upper | ||
) | [private] |
new readonly string Kitware.VTK.vtkThresholdTextureCoords.MRClassNameKey = "25vtkThresholdTextureCoords" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.
new const string Kitware.VTK.vtkThresholdTextureCoords.MRFullTypeName = "Kitware.VTK.vtkThresholdTextureCoords" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkDataSetAlgorithm.