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

vtkLookupTable - map scalar values into colors via a lookup table More...

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

List of all members.

Public Member Functions

 vtkLookupTable (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkLookupTable ()
 Construct with range=[0,1]; and hsv ranges set up for rainbow color table (from red to blue).
int Allocate (int sz, int ext)
 Allocate a color table of specified size.
override void Build ()
 Generate lookup table from hue, saturation, value, alpha min/max values. Table is built from linear ramp of each value.
void DeepCopy (vtkLookupTable lut)
 Copy the contents from another LookupTable.
virtual void ForceBuild ()
 Force the lookup table to regenerate from hue, saturation, value, and alpha min/max values. Table is built from a linear ramp of each value. ForceBuild() is useful if a lookup table has been defined manually (using SetTableValue) and then an application decides to rebuild the lookup table using the implicit process.
virtual double[] GetAlphaRange ()
 Set the range in alpha (using automatic generation). Alpha ranges from [0,1].
virtual void GetAlphaRange (ref double _arg1, ref double _arg2)
 Set the range in alpha (using automatic generation). Alpha ranges from [0,1].
virtual void GetAlphaRange (IntPtr _arg)
 Set the range in alpha (using automatic generation). Alpha ranges from [0,1].
override void GetColor (double x, IntPtr rgb)
 Map one value through the lookup table and return the color as an RGB array of doubles between 0 and 1.
virtual double[] GetHueRange ()
 Set the range in hue (using automatic generation). Hue ranges between [0,1].
virtual void GetHueRange (ref double _arg1, ref double _arg2)
 Set the range in hue (using automatic generation). Hue ranges between [0,1].
virtual void GetHueRange (IntPtr _arg)
 Set the range in hue (using automatic generation). Hue ranges between [0,1].
virtual int GetIndex (double v)
 Return the table index associated with a particular value.
virtual double[] GetNanColor ()
 Set the color to use when a NaN (not a number) is encountered. This is an RGBA 4-tuple color of doubles in the range [0,1].
virtual void GetNanColor (ref double _arg1, ref double _arg2, ref double _arg3, ref double _arg4)
 Set the color to use when a NaN (not a number) is encountered. This is an RGBA 4-tuple color of doubles in the range [0,1].
virtual void GetNanColor (IntPtr _arg)
 Set the color to use when a NaN (not a number) is encountered. This is an RGBA 4-tuple color of doubles in the range [0,1].
override int GetNumberOfAvailableColors ()
 Get the number of available colors for mapping to.
virtual int GetNumberOfColors ()
 Set the number of colors in the lookup table. Use SetNumberOfTableValues() instead, it can be used both before and after the table has been built whereas SetNumberOfColors() has no effect after the table has been built.
virtual int GetNumberOfColorsMaxValue ()
 Set the number of colors in the lookup table. Use SetNumberOfTableValues() instead, it can be used both before and after the table has been built whereas SetNumberOfColors() has no effect after the table has been built.
virtual int GetNumberOfColorsMinValue ()
 Set the number of colors in the lookup table. Use SetNumberOfTableValues() instead, it can be used both before and after the table has been built whereas SetNumberOfColors() has no effect after the table has been built.
int GetNumberOfTableValues ()
 Specify the number of values (i.e., colors) in the lookup table.
override double GetOpacity (double v)
 Map one value through the lookup table and return the alpha value (the opacity) as a double between 0 and 1.
IntPtr GetPointer (int id)
 Get pointer to color table data. Format is array of unsigned char r-g-b-a-r-g-b-a...
virtual int GetRamp ()
 Set the shape of the table ramp to either linear or S-curve. The default is S-curve, which tails off gradually at either end. The equation used for the S-curve is y = (sin((x - 1/2)*pi) + 1)/2, while the equation for the linear ramp is simply y = x. For an S-curve greyscale ramp, you should set NumberOfTableValues to 402 (which is 256*pi/2) to provide room for the tails of the ramp. The equation for the SQRT is y = sqrt(x).
override double[] GetRange ()
 Sets/Gets the range of scalars which will be mapped. This is a duplicate of Get/SetTableRange.
virtual double[] GetSaturationRange ()
 Set the range in saturation (using automatic generation). Saturation ranges between [0,1].
virtual void GetSaturationRange (ref double _arg1, ref double _arg2)
 Set the range in saturation (using automatic generation). Saturation ranges between [0,1].
virtual void GetSaturationRange (IntPtr _arg)
 Set the range in saturation (using automatic generation). Saturation ranges between [0,1].
virtual int GetScale ()
 Set the type of scale to use, linear or logarithmic. The default is linear. If the scale is logarithmic, then the TableRange must not cross the value zero.
virtual vtkUnsignedCharArray GetTable ()
 Set/Get the internal table array that is used to map the scalars to colors. The table array is an unsigned char array with 4 components representing RGBA.
virtual double[] GetTableRange ()
 Set/Get the minimum/maximum scalar values for scalar mapping. Scalar values less than minimum range value are clamped to minimum range value. Scalar values greater than maximum range value are clamped to maximum range value.
virtual void GetTableRange (IntPtr data)
 Set/Get the minimum/maximum scalar values for scalar mapping. Scalar values less than minimum range value are clamped to minimum range value. Scalar values greater than maximum range value are clamped to maximum range value.
double[] GetTableValue (int id)
 Return a rgba color value for the given index into the lookup table. Color components are expressed as [0,1] double values.
void GetTableValue (int id, IntPtr rgba)
 Return a rgba color value for the given index into the lookup table. Color components are expressed as [0,1] double values.
virtual double[] GetValueRange ()
 Set the range in value (using automatic generation). Value ranges between [0,1].
virtual void GetValueRange (ref double _arg1, ref double _arg2)
 Set the range in value (using automatic generation). Value ranges between [0,1].
virtual void GetValueRange (IntPtr _arg)
 Set the range in value (using automatic generation). Value ranges between [0,1].
override int IsA (string type)
 Construct with range=[0,1]; and hsv ranges set up for rainbow color table (from red to blue).
override int IsOpaque ()
 Return true if all of the values defining the mapping have an opacity equal to 1. Default implementation return true.
override void MapScalarsThroughTable2 (IntPtr input, IntPtr output, int inputDataType, int numberOfValues, int inputIncrement, int outputIncrement)
 map a set of scalars through the lookup table
override IntPtr MapValue (double v)
 Map one value through the lookup table.
new vtkLookupTable NewInstance ()
 Construct with range=[0,1]; and hsv ranges set up for rainbow color table (from red to blue).
virtual void SetAlphaRange (double _arg1, double _arg2)
 Set the range in alpha (using automatic generation). Alpha ranges from [0,1].
void SetAlphaRange (IntPtr _arg)
 Set the range in alpha (using automatic generation). Alpha ranges from [0,1].
virtual void SetHueRange (double _arg1, double _arg2)
 Set the range in hue (using automatic generation). Hue ranges between [0,1].
void SetHueRange (IntPtr _arg)
 Set the range in hue (using automatic generation). Hue ranges between [0,1].
virtual void SetNanColor (double _arg1, double _arg2, double _arg3, double _arg4)
 Set the color to use when a NaN (not a number) is encountered. This is an RGBA 4-tuple color of doubles in the range [0,1].
virtual void SetNanColor (IntPtr _arg)
 Set the color to use when a NaN (not a number) is encountered. This is an RGBA 4-tuple color of doubles in the range [0,1].
virtual void SetNumberOfColors (int _arg)
 Set the number of colors in the lookup table. Use SetNumberOfTableValues() instead, it can be used both before and after the table has been built whereas SetNumberOfColors() has no effect after the table has been built.
void SetNumberOfTableValues (int number)
 Specify the number of values (i.e., colors) in the lookup table.
virtual void SetRamp (int _arg)
 Set the shape of the table ramp to either linear or S-curve. The default is S-curve, which tails off gradually at either end. The equation used for the S-curve is y = (sin((x - 1/2)*pi) + 1)/2, while the equation for the linear ramp is simply y = x. For an S-curve greyscale ramp, you should set NumberOfTableValues to 402 (which is 256*pi/2) to provide room for the tails of the ramp. The equation for the SQRT is y = sqrt(x).
void SetRampToLinear ()
 Set the shape of the table ramp to either linear or S-curve. The default is S-curve, which tails off gradually at either end. The equation used for the S-curve is y = (sin((x - 1/2)*pi) + 1)/2, while the equation for the linear ramp is simply y = x. For an S-curve greyscale ramp, you should set NumberOfTableValues to 402 (which is 256*pi/2) to provide room for the tails of the ramp. The equation for the SQRT is y = sqrt(x).
void SetRampToSCurve ()
 Set the shape of the table ramp to either linear or S-curve. The default is S-curve, which tails off gradually at either end. The equation used for the S-curve is y = (sin((x - 1/2)*pi) + 1)/2, while the equation for the linear ramp is simply y = x. For an S-curve greyscale ramp, you should set NumberOfTableValues to 402 (which is 256*pi/2) to provide room for the tails of the ramp. The equation for the SQRT is y = sqrt(x).
void SetRampToSQRT ()
 Set the shape of the table ramp to either linear or S-curve. The default is S-curve, which tails off gradually at either end. The equation used for the S-curve is y = (sin((x - 1/2)*pi) + 1)/2, while the equation for the linear ramp is simply y = x. For an S-curve greyscale ramp, you should set NumberOfTableValues to 402 (which is 256*pi/2) to provide room for the tails of the ramp. The equation for the SQRT is y = sqrt(x).
override void SetRange (double min, double max)
 Sets/Gets the range of scalars which will be mapped. This is a duplicate of Get/SetTableRange.
new void SetRange (IntPtr rng)
 Sets/Gets the range of scalars which will be mapped. This is a duplicate of Get/SetTableRange.
virtual void SetSaturationRange (double _arg1, double _arg2)
 Set the range in saturation (using automatic generation). Saturation ranges between [0,1].
void SetSaturationRange (IntPtr _arg)
 Set the range in saturation (using automatic generation). Saturation ranges between [0,1].
void SetScale (int scale)
 Set the type of scale to use, linear or logarithmic. The default is linear. If the scale is logarithmic, then the TableRange must not cross the value zero.
void SetScaleToLinear ()
 Set the type of scale to use, linear or logarithmic. The default is linear. If the scale is logarithmic, then the TableRange must not cross the value zero.
void SetScaleToLog10 ()
 Set the type of scale to use, linear or logarithmic. The default is linear. If the scale is logarithmic, then the TableRange must not cross the value zero.
void SetTable (vtkUnsignedCharArray arg0)
 Set/Get the internal table array that is used to map the scalars to colors. The table array is an unsigned char array with 4 components representing RGBA.
void SetTableRange (IntPtr r)
 Set/Get the minimum/maximum scalar values for scalar mapping. Scalar values less than minimum range value are clamped to minimum range value. Scalar values greater than maximum range value are clamped to maximum range value.
virtual void SetTableRange (double min, double max)
 Set/Get the minimum/maximum scalar values for scalar mapping. Scalar values less than minimum range value are clamped to minimum range value. Scalar values greater than maximum range value are clamped to maximum range value.
void SetTableValue (int indx, IntPtr rgba)
 Directly load color into lookup table. Use [0,1] double values for color component specification. Make sure that you've either used the Build() method or used SetNumberOfTableValues() prior to using this method.
void SetTableValue (int indx, double r, double g, double b, double a)
 Directly load color into lookup table. Use [0,1] double values for color component specification.
virtual void SetValueRange (double _arg1, double _arg2)
 Set the range in value (using automatic generation). Value ranges between [0,1].
void SetValueRange (IntPtr _arg)
 Set the range in value (using automatic generation). Value ranges between [0,1].
override int UsingLogScale ()
 This should return 1 is the subclass is using log scale for mapping scalars to colors. Returns 1 is scale == VTK_SCALE_LOG10.
IntPtr WritePointer (int id, int number)

Static Public Member Functions

static new vtkLookupTable New ()
 Construct with range=[0,1]; and hsv ranges set up for rainbow color table (from red to blue).
static double ApplyLogScale (double v, IntPtr range, IntPtr log_range)
 Sets/Gets the range of scalars which will be mapped. This is a duplicate of Get/SetTableRange.
static void GetLogRange (IntPtr range, IntPtr log_range)
 Sets/Gets the range of scalars which will be mapped. This is a duplicate of Get/SetTableRange.
static new int IsTypeOf (string type)
 Construct with range=[0,1]; and hsv ranges set up for rainbow color table (from red to blue).
static new vtkLookupTable SafeDownCast (vtkObjectBase o)
 Construct with range=[0,1]; and hsv ranges set up for rainbow color table (from red to blue).

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "14vtkLookupTable"
 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 vtkLookupTable_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkLookupTable_Allocate_01 (HandleRef pThis, int sz, int ext)
static internal double vtkLookupTable_ApplyLogScale_02 (double v, IntPtr range, IntPtr log_range)
static internal void vtkLookupTable_Build_03 (HandleRef pThis)
static internal void vtkLookupTable_DeepCopy_04 (HandleRef pThis, HandleRef lut)
static internal void vtkLookupTable_ForceBuild_05 (HandleRef pThis)
static internal IntPtr vtkLookupTable_GetAlphaRange_06 (HandleRef pThis)
static internal void vtkLookupTable_GetAlphaRange_07 (HandleRef pThis, ref double _arg1, ref double _arg2)
static internal void vtkLookupTable_GetAlphaRange_08 (HandleRef pThis, IntPtr _arg)
static internal void vtkLookupTable_GetColor_09 (HandleRef pThis, double x, IntPtr rgb)
static internal IntPtr vtkLookupTable_GetHueRange_10 (HandleRef pThis)
static internal void vtkLookupTable_GetHueRange_11 (HandleRef pThis, ref double _arg1, ref double _arg2)
static internal void vtkLookupTable_GetHueRange_12 (HandleRef pThis, IntPtr _arg)
static internal int vtkLookupTable_GetIndex_13 (HandleRef pThis, double v)
static internal void vtkLookupTable_GetLogRange_14 (IntPtr range, IntPtr log_range)
static internal IntPtr vtkLookupTable_GetNanColor_15 (HandleRef pThis)
static internal void vtkLookupTable_GetNanColor_16 (HandleRef pThis, ref double _arg1, ref double _arg2, ref double _arg3, ref double _arg4)
static internal void vtkLookupTable_GetNanColor_17 (HandleRef pThis, IntPtr _arg)
static internal int vtkLookupTable_GetNumberOfAvailableColors_18 (HandleRef pThis)
static internal int vtkLookupTable_GetNumberOfColors_19 (HandleRef pThis)
static internal int vtkLookupTable_GetNumberOfColorsMaxValue_20 (HandleRef pThis)
static internal int vtkLookupTable_GetNumberOfColorsMinValue_21 (HandleRef pThis)
static internal int vtkLookupTable_GetNumberOfTableValues_22 (HandleRef pThis)
static internal double vtkLookupTable_GetOpacity_23 (HandleRef pThis, double v)
static internal IntPtr vtkLookupTable_GetPointer_24 (HandleRef pThis, int id)
static internal int vtkLookupTable_GetRamp_25 (HandleRef pThis)
static internal IntPtr vtkLookupTable_GetRange_26 (HandleRef pThis)
static internal IntPtr vtkLookupTable_GetSaturationRange_27 (HandleRef pThis)
static internal void vtkLookupTable_GetSaturationRange_28 (HandleRef pThis, ref double _arg1, ref double _arg2)
static internal void vtkLookupTable_GetSaturationRange_29 (HandleRef pThis, IntPtr _arg)
static internal int vtkLookupTable_GetScale_30 (HandleRef pThis)
static internal IntPtr vtkLookupTable_GetTable_31 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkLookupTable_GetTableRange_32 (HandleRef pThis)
static internal void vtkLookupTable_GetTableRange_33 (HandleRef pThis, IntPtr data)
static internal IntPtr vtkLookupTable_GetTableValue_34 (HandleRef pThis, int id)
static internal void vtkLookupTable_GetTableValue_35 (HandleRef pThis, int id, IntPtr rgba)
static internal IntPtr vtkLookupTable_GetValueRange_36 (HandleRef pThis)
static internal void vtkLookupTable_GetValueRange_37 (HandleRef pThis, ref double _arg1, ref double _arg2)
static internal void vtkLookupTable_GetValueRange_38 (HandleRef pThis, IntPtr _arg)
static internal int vtkLookupTable_IsA_39 (HandleRef pThis, string type)
static internal int vtkLookupTable_IsOpaque_40 (HandleRef pThis)
static internal int vtkLookupTable_IsTypeOf_41 (string type)
static internal void vtkLookupTable_MapScalarsThroughTable2_42 (HandleRef pThis, IntPtr input, IntPtr output, int inputDataType, int numberOfValues, int inputIncrement, int outputIncrement)
static internal IntPtr vtkLookupTable_MapValue_43 (HandleRef pThis, double v)
static internal IntPtr vtkLookupTable_NewInstance_45 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkLookupTable_SafeDownCast_46 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkLookupTable_SetAlphaRange_47 (HandleRef pThis, double _arg1, double _arg2)
static internal void vtkLookupTable_SetAlphaRange_48 (HandleRef pThis, IntPtr _arg)
static internal void vtkLookupTable_SetHueRange_49 (HandleRef pThis, double _arg1, double _arg2)
static internal void vtkLookupTable_SetHueRange_50 (HandleRef pThis, IntPtr _arg)
static internal void vtkLookupTable_SetNanColor_51 (HandleRef pThis, double _arg1, double _arg2, double _arg3, double _arg4)
static internal void vtkLookupTable_SetNanColor_52 (HandleRef pThis, IntPtr _arg)
static internal void vtkLookupTable_SetNumberOfColors_53 (HandleRef pThis, int _arg)
static internal void vtkLookupTable_SetNumberOfTableValues_54 (HandleRef pThis, int number)
static internal void vtkLookupTable_SetRamp_55 (HandleRef pThis, int _arg)
static internal void vtkLookupTable_SetRampToLinear_56 (HandleRef pThis)
static internal void vtkLookupTable_SetRampToSCurve_57 (HandleRef pThis)
static internal void vtkLookupTable_SetRampToSQRT_58 (HandleRef pThis)
static internal void vtkLookupTable_SetRange_59 (HandleRef pThis, double min, double max)
static internal void vtkLookupTable_SetRange_60 (HandleRef pThis, IntPtr rng)
static internal void vtkLookupTable_SetSaturationRange_61 (HandleRef pThis, double _arg1, double _arg2)
static internal void vtkLookupTable_SetSaturationRange_62 (HandleRef pThis, IntPtr _arg)
static internal void vtkLookupTable_SetScale_63 (HandleRef pThis, int scale)
static internal void vtkLookupTable_SetScaleToLinear_64 (HandleRef pThis)
static internal void vtkLookupTable_SetScaleToLog10_65 (HandleRef pThis)
static internal void vtkLookupTable_SetTable_66 (HandleRef pThis, HandleRef arg0)
static internal void vtkLookupTable_SetTableRange_67 (HandleRef pThis, IntPtr r)
static internal void vtkLookupTable_SetTableRange_68 (HandleRef pThis, double min, double max)
static internal void vtkLookupTable_SetTableValue_69 (HandleRef pThis, int indx, IntPtr rgba)
static internal void vtkLookupTable_SetTableValue_70 (HandleRef pThis, int indx, double r, double g, double b, double a)
static internal void vtkLookupTable_SetValueRange_71 (HandleRef pThis, double _arg1, double _arg2)
static internal void vtkLookupTable_SetValueRange_72 (HandleRef pThis, IntPtr _arg)
static internal int vtkLookupTable_UsingLogScale_73 (HandleRef pThis)
static internal IntPtr vtkLookupTable_WritePointer_74 (HandleRef pThis, int id, int number)

Static Private Member Functions

static vtkLookupTable ()
 Automatically generated type registration mechanics.

Detailed Description

vtkLookupTable - map scalar values into colors via a lookup table

Description vtkLookupTable is an object that is used by mapper objects to map scalar values into rgba (red-green-blue-alpha transparency) color specification, or rgba into scalar values. The color table can be created by direct insertion of color values, or by specifying hue, saturation, value, and alpha range and generating a table.

Caveats You need to explicitly call Build() when constructing the LUT by hand.

vtkLogLookupTable vtkWindowLevelLookupTable


Constructor & Destructor Documentation

static Kitware.VTK.vtkLookupTable.vtkLookupTable ( ) [static, private]

Automatically generated type registration mechanics.

Kitware.VTK.vtkLookupTable.vtkLookupTable ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Construct with range=[0,1]; and hsv ranges set up for rainbow color table (from red to blue).


Member Function Documentation

int Kitware.VTK.vtkLookupTable.Allocate ( int  sz,
int  ext 
)

Allocate a color table of specified size.

static double Kitware.VTK.vtkLookupTable.ApplyLogScale ( double  v,
IntPtr  range,
IntPtr  log_range 
) [static]

Sets/Gets the range of scalars which will be mapped. This is a duplicate of Get/SetTableRange.

override void Kitware.VTK.vtkLookupTable.Build ( ) [virtual]

Generate lookup table from hue, saturation, value, alpha min/max values. Table is built from linear ramp of each value.

Reimplemented from Kitware.VTK.vtkScalarsToColors.

Reimplemented in Kitware.VTK.vtkWindowLevelLookupTable.

Copy the contents from another LookupTable.

override void Kitware.VTK.vtkLookupTable.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.vtkScalarsToColors.

Reimplemented in Kitware.VTK.vtkLookupTableWithEnabling, Kitware.VTK.vtkLogLookupTable, and Kitware.VTK.vtkWindowLevelLookupTable.

virtual void Kitware.VTK.vtkLookupTable.ForceBuild ( ) [virtual]

Force the lookup table to regenerate from hue, saturation, value, and alpha min/max values. Table is built from a linear ramp of each value. ForceBuild() is useful if a lookup table has been defined manually (using SetTableValue) and then an application decides to rebuild the lookup table using the implicit process.

virtual double [] Kitware.VTK.vtkLookupTable.GetAlphaRange ( ) [virtual]

Set the range in alpha (using automatic generation). Alpha ranges from [0,1].

virtual void Kitware.VTK.vtkLookupTable.GetAlphaRange ( ref double  _arg1,
ref double  _arg2 
) [virtual]

Set the range in alpha (using automatic generation). Alpha ranges from [0,1].

virtual void Kitware.VTK.vtkLookupTable.GetAlphaRange ( IntPtr  _arg) [virtual]

Set the range in alpha (using automatic generation). Alpha ranges from [0,1].

override void Kitware.VTK.vtkLookupTable.GetColor ( double  x,
IntPtr  rgb 
) [virtual]

Map one value through the lookup table and return the color as an RGB array of doubles between 0 and 1.

Reimplemented from Kitware.VTK.vtkScalarsToColors.

virtual double [] Kitware.VTK.vtkLookupTable.GetHueRange ( ) [virtual]

Set the range in hue (using automatic generation). Hue ranges between [0,1].

virtual void Kitware.VTK.vtkLookupTable.GetHueRange ( ref double  _arg1,
ref double  _arg2 
) [virtual]

Set the range in hue (using automatic generation). Hue ranges between [0,1].

virtual void Kitware.VTK.vtkLookupTable.GetHueRange ( IntPtr  _arg) [virtual]

Set the range in hue (using automatic generation). Hue ranges between [0,1].

virtual int Kitware.VTK.vtkLookupTable.GetIndex ( double  v) [virtual]

Return the table index associated with a particular value.

static void Kitware.VTK.vtkLookupTable.GetLogRange ( IntPtr  range,
IntPtr  log_range 
) [static]

Sets/Gets the range of scalars which will be mapped. This is a duplicate of Get/SetTableRange.

virtual double [] Kitware.VTK.vtkLookupTable.GetNanColor ( ) [virtual]

Set the color to use when a NaN (not a number) is encountered. This is an RGBA 4-tuple color of doubles in the range [0,1].

virtual void Kitware.VTK.vtkLookupTable.GetNanColor ( ref double  _arg1,
ref double  _arg2,
ref double  _arg3,
ref double  _arg4 
) [virtual]

Set the color to use when a NaN (not a number) is encountered. This is an RGBA 4-tuple color of doubles in the range [0,1].

virtual void Kitware.VTK.vtkLookupTable.GetNanColor ( IntPtr  _arg) [virtual]

Set the color to use when a NaN (not a number) is encountered. This is an RGBA 4-tuple color of doubles in the range [0,1].

Get the number of available colors for mapping to.

Reimplemented from Kitware.VTK.vtkScalarsToColors.

Set the number of colors in the lookup table. Use SetNumberOfTableValues() instead, it can be used both before and after the table has been built whereas SetNumberOfColors() has no effect after the table has been built.

Set the number of colors in the lookup table. Use SetNumberOfTableValues() instead, it can be used both before and after the table has been built whereas SetNumberOfColors() has no effect after the table has been built.

Set the number of colors in the lookup table. Use SetNumberOfTableValues() instead, it can be used both before and after the table has been built whereas SetNumberOfColors() has no effect after the table has been built.

Specify the number of values (i.e., colors) in the lookup table.

override double Kitware.VTK.vtkLookupTable.GetOpacity ( double  v) [virtual]

Map one value through the lookup table and return the alpha value (the opacity) as a double between 0 and 1.

Reimplemented from Kitware.VTK.vtkScalarsToColors.

Get pointer to color table data. Format is array of unsigned char r-g-b-a-r-g-b-a...

virtual int Kitware.VTK.vtkLookupTable.GetRamp ( ) [virtual]

Set the shape of the table ramp to either linear or S-curve. The default is S-curve, which tails off gradually at either end. The equation used for the S-curve is y = (sin((x - 1/2)*pi) + 1)/2, while the equation for the linear ramp is simply y = x. For an S-curve greyscale ramp, you should set NumberOfTableValues to 402 (which is 256*pi/2) to provide room for the tails of the ramp. The equation for the SQRT is y = sqrt(x).

override double [] Kitware.VTK.vtkLookupTable.GetRange ( ) [virtual]

Sets/Gets the range of scalars which will be mapped. This is a duplicate of Get/SetTableRange.

Reimplemented from Kitware.VTK.vtkScalarsToColors.

virtual double [] Kitware.VTK.vtkLookupTable.GetSaturationRange ( ) [virtual]

Set the range in saturation (using automatic generation). Saturation ranges between [0,1].

virtual void Kitware.VTK.vtkLookupTable.GetSaturationRange ( ref double  _arg1,
ref double  _arg2 
) [virtual]

Set the range in saturation (using automatic generation). Saturation ranges between [0,1].

virtual void Kitware.VTK.vtkLookupTable.GetSaturationRange ( IntPtr  _arg) [virtual]

Set the range in saturation (using automatic generation). Saturation ranges between [0,1].

virtual int Kitware.VTK.vtkLookupTable.GetScale ( ) [virtual]

Set the type of scale to use, linear or logarithmic. The default is linear. If the scale is logarithmic, then the TableRange must not cross the value zero.

Set/Get the internal table array that is used to map the scalars to colors. The table array is an unsigned char array with 4 components representing RGBA.

Here is the call graph for this function:

virtual double [] Kitware.VTK.vtkLookupTable.GetTableRange ( ) [virtual]

Set/Get the minimum/maximum scalar values for scalar mapping. Scalar values less than minimum range value are clamped to minimum range value. Scalar values greater than maximum range value are clamped to maximum range value.

virtual void Kitware.VTK.vtkLookupTable.GetTableRange ( IntPtr  data) [virtual]

Set/Get the minimum/maximum scalar values for scalar mapping. Scalar values less than minimum range value are clamped to minimum range value. Scalar values greater than maximum range value are clamped to maximum range value.

Return a rgba color value for the given index into the lookup table. Color components are expressed as [0,1] double values.

void Kitware.VTK.vtkLookupTable.GetTableValue ( int  id,
IntPtr  rgba 
)

Return a rgba color value for the given index into the lookup table. Color components are expressed as [0,1] double values.

virtual double [] Kitware.VTK.vtkLookupTable.GetValueRange ( ) [virtual]

Set the range in value (using automatic generation). Value ranges between [0,1].

virtual void Kitware.VTK.vtkLookupTable.GetValueRange ( ref double  _arg1,
ref double  _arg2 
) [virtual]

Set the range in value (using automatic generation). Value ranges between [0,1].

virtual void Kitware.VTK.vtkLookupTable.GetValueRange ( IntPtr  _arg) [virtual]

Set the range in value (using automatic generation). Value ranges between [0,1].

override int Kitware.VTK.vtkLookupTable.IsA ( string  type) [virtual]

Construct with range=[0,1]; and hsv ranges set up for rainbow color table (from red to blue).

Reimplemented from Kitware.VTK.vtkScalarsToColors.

Reimplemented in Kitware.VTK.vtkWindowLevelLookupTable, Kitware.VTK.vtkLookupTableWithEnabling, and Kitware.VTK.vtkLogLookupTable.

override int Kitware.VTK.vtkLookupTable.IsOpaque ( ) [virtual]

Return true if all of the values defining the mapping have an opacity equal to 1. Default implementation return true.

Reimplemented from Kitware.VTK.vtkScalarsToColors.

static new int Kitware.VTK.vtkLookupTable.IsTypeOf ( string  type) [static]

Construct with range=[0,1]; and hsv ranges set up for rainbow color table (from red to blue).

Reimplemented from Kitware.VTK.vtkScalarsToColors.

Reimplemented in Kitware.VTK.vtkWindowLevelLookupTable, Kitware.VTK.vtkLookupTableWithEnabling, and Kitware.VTK.vtkLogLookupTable.

override void Kitware.VTK.vtkLookupTable.MapScalarsThroughTable2 ( IntPtr  input,
IntPtr  output,
int  inputDataType,
int  numberOfValues,
int  inputIncrement,
int  outputIncrement 
) [virtual]

map a set of scalars through the lookup table

Reimplemented from Kitware.VTK.vtkScalarsToColors.

Reimplemented in Kitware.VTK.vtkLookupTableWithEnabling.

override IntPtr Kitware.VTK.vtkLookupTable.MapValue ( double  v) [virtual]

Map one value through the lookup table.

Reimplemented from Kitware.VTK.vtkScalarsToColors.

Construct with range=[0,1]; and hsv ranges set up for rainbow color table (from red to blue).

Reimplemented from Kitware.VTK.vtkObject.

Reimplemented in Kitware.VTK.vtkLookupTableWithEnabling, Kitware.VTK.vtkLogLookupTable, and Kitware.VTK.vtkWindowLevelLookupTable.

Construct with range=[0,1]; and hsv ranges set up for rainbow color table (from red to blue).

Reimplemented from Kitware.VTK.vtkScalarsToColors.

Reimplemented in Kitware.VTK.vtkWindowLevelLookupTable, Kitware.VTK.vtkLookupTableWithEnabling, and Kitware.VTK.vtkLogLookupTable.

Construct with range=[0,1]; and hsv ranges set up for rainbow color table (from red to blue).

Reimplemented from Kitware.VTK.vtkScalarsToColors.

Reimplemented in Kitware.VTK.vtkWindowLevelLookupTable, Kitware.VTK.vtkLookupTableWithEnabling, and Kitware.VTK.vtkLogLookupTable.

Here is the call graph for this function:

virtual void Kitware.VTK.vtkLookupTable.SetAlphaRange ( double  _arg1,
double  _arg2 
) [virtual]

Set the range in alpha (using automatic generation). Alpha ranges from [0,1].

Set the range in alpha (using automatic generation). Alpha ranges from [0,1].

virtual void Kitware.VTK.vtkLookupTable.SetHueRange ( double  _arg1,
double  _arg2 
) [virtual]

Set the range in hue (using automatic generation). Hue ranges between [0,1].

Set the range in hue (using automatic generation). Hue ranges between [0,1].

virtual void Kitware.VTK.vtkLookupTable.SetNanColor ( double  _arg1,
double  _arg2,
double  _arg3,
double  _arg4 
) [virtual]

Set the color to use when a NaN (not a number) is encountered. This is an RGBA 4-tuple color of doubles in the range [0,1].

virtual void Kitware.VTK.vtkLookupTable.SetNanColor ( IntPtr  _arg) [virtual]

Set the color to use when a NaN (not a number) is encountered. This is an RGBA 4-tuple color of doubles in the range [0,1].

virtual void Kitware.VTK.vtkLookupTable.SetNumberOfColors ( int  _arg) [virtual]

Set the number of colors in the lookup table. Use SetNumberOfTableValues() instead, it can be used both before and after the table has been built whereas SetNumberOfColors() has no effect after the table has been built.

Specify the number of values (i.e., colors) in the lookup table.

virtual void Kitware.VTK.vtkLookupTable.SetRamp ( int  _arg) [virtual]

Set the shape of the table ramp to either linear or S-curve. The default is S-curve, which tails off gradually at either end. The equation used for the S-curve is y = (sin((x - 1/2)*pi) + 1)/2, while the equation for the linear ramp is simply y = x. For an S-curve greyscale ramp, you should set NumberOfTableValues to 402 (which is 256*pi/2) to provide room for the tails of the ramp. The equation for the SQRT is y = sqrt(x).

Set the shape of the table ramp to either linear or S-curve. The default is S-curve, which tails off gradually at either end. The equation used for the S-curve is y = (sin((x - 1/2)*pi) + 1)/2, while the equation for the linear ramp is simply y = x. For an S-curve greyscale ramp, you should set NumberOfTableValues to 402 (which is 256*pi/2) to provide room for the tails of the ramp. The equation for the SQRT is y = sqrt(x).

Set the shape of the table ramp to either linear or S-curve. The default is S-curve, which tails off gradually at either end. The equation used for the S-curve is y = (sin((x - 1/2)*pi) + 1)/2, while the equation for the linear ramp is simply y = x. For an S-curve greyscale ramp, you should set NumberOfTableValues to 402 (which is 256*pi/2) to provide room for the tails of the ramp. The equation for the SQRT is y = sqrt(x).

Set the shape of the table ramp to either linear or S-curve. The default is S-curve, which tails off gradually at either end. The equation used for the S-curve is y = (sin((x - 1/2)*pi) + 1)/2, while the equation for the linear ramp is simply y = x. For an S-curve greyscale ramp, you should set NumberOfTableValues to 402 (which is 256*pi/2) to provide room for the tails of the ramp. The equation for the SQRT is y = sqrt(x).

override void Kitware.VTK.vtkLookupTable.SetRange ( double  min,
double  max 
) [virtual]

Sets/Gets the range of scalars which will be mapped. This is a duplicate of Get/SetTableRange.

Reimplemented from Kitware.VTK.vtkScalarsToColors.

new void Kitware.VTK.vtkLookupTable.SetRange ( IntPtr  rng)

Sets/Gets the range of scalars which will be mapped. This is a duplicate of Get/SetTableRange.

Reimplemented from Kitware.VTK.vtkScalarsToColors.

virtual void Kitware.VTK.vtkLookupTable.SetSaturationRange ( double  _arg1,
double  _arg2 
) [virtual]

Set the range in saturation (using automatic generation). Saturation ranges between [0,1].

Set the range in saturation (using automatic generation). Saturation ranges between [0,1].

Set the type of scale to use, linear or logarithmic. The default is linear. If the scale is logarithmic, then the TableRange must not cross the value zero.

Set the type of scale to use, linear or logarithmic. The default is linear. If the scale is logarithmic, then the TableRange must not cross the value zero.

Set the type of scale to use, linear or logarithmic. The default is linear. If the scale is logarithmic, then the TableRange must not cross the value zero.

Set/Get the internal table array that is used to map the scalars to colors. The table array is an unsigned char array with 4 components representing RGBA.

Set/Get the minimum/maximum scalar values for scalar mapping. Scalar values less than minimum range value are clamped to minimum range value. Scalar values greater than maximum range value are clamped to maximum range value.

virtual void Kitware.VTK.vtkLookupTable.SetTableRange ( double  min,
double  max 
) [virtual]

Set/Get the minimum/maximum scalar values for scalar mapping. Scalar values less than minimum range value are clamped to minimum range value. Scalar values greater than maximum range value are clamped to maximum range value.

void Kitware.VTK.vtkLookupTable.SetTableValue ( int  indx,
IntPtr  rgba 
)

Directly load color into lookup table. Use [0,1] double values for color component specification. Make sure that you've either used the Build() method or used SetNumberOfTableValues() prior to using this method.

void Kitware.VTK.vtkLookupTable.SetTableValue ( int  indx,
double  r,
double  g,
double  b,
double  a 
)

Directly load color into lookup table. Use [0,1] double values for color component specification.

virtual void Kitware.VTK.vtkLookupTable.SetValueRange ( double  _arg1,
double  _arg2 
) [virtual]

Set the range in value (using automatic generation). Value ranges between [0,1].

Set the range in value (using automatic generation). Value ranges between [0,1].

override int Kitware.VTK.vtkLookupTable.UsingLogScale ( ) [virtual]

This should return 1 is the subclass is using log scale for mapping scalars to colors. Returns 1 is scale == VTK_SCALE_LOG10.

Reimplemented from Kitware.VTK.vtkScalarsToColors.

static internal int Kitware.VTK.vtkLookupTable.vtkLookupTable_Allocate_01 ( HandleRef  pThis,
int  sz,
int  ext 
) [private]
static internal double Kitware.VTK.vtkLookupTable.vtkLookupTable_ApplyLogScale_02 ( double  v,
IntPtr  range,
IntPtr  log_range 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_Build_03 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_DeepCopy_04 ( HandleRef  pThis,
HandleRef  lut 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_ForceBuild_05 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_GetAlphaRange_06 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetAlphaRange_07 ( HandleRef  pThis,
ref double  _arg1,
ref double  _arg2 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetAlphaRange_08 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetColor_09 ( HandleRef  pThis,
double  x,
IntPtr  rgb 
) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_GetHueRange_10 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetHueRange_11 ( HandleRef  pThis,
ref double  _arg1,
ref double  _arg2 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetHueRange_12 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal int Kitware.VTK.vtkLookupTable.vtkLookupTable_GetIndex_13 ( HandleRef  pThis,
double  v 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetLogRange_14 ( IntPtr  range,
IntPtr  log_range 
) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_GetNanColor_15 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetNanColor_16 ( HandleRef  pThis,
ref double  _arg1,
ref double  _arg2,
ref double  _arg3,
ref double  _arg4 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetNanColor_17 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal int Kitware.VTK.vtkLookupTable.vtkLookupTable_GetNumberOfAvailableColors_18 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkLookupTable.vtkLookupTable_GetNumberOfColors_19 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkLookupTable.vtkLookupTable_GetNumberOfColorsMaxValue_20 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkLookupTable.vtkLookupTable_GetNumberOfColorsMinValue_21 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkLookupTable.vtkLookupTable_GetNumberOfTableValues_22 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkLookupTable.vtkLookupTable_GetOpacity_23 ( HandleRef  pThis,
double  v 
) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_GetPointer_24 ( HandleRef  pThis,
int  id 
) [private]
static internal int Kitware.VTK.vtkLookupTable.vtkLookupTable_GetRamp_25 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_GetRange_26 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_GetSaturationRange_27 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetSaturationRange_28 ( HandleRef  pThis,
ref double  _arg1,
ref double  _arg2 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetSaturationRange_29 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal int Kitware.VTK.vtkLookupTable.vtkLookupTable_GetScale_30 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_GetTable_31 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_GetTableRange_32 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetTableRange_33 ( HandleRef  pThis,
IntPtr  data 
) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_GetTableValue_34 ( HandleRef  pThis,
int  id 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetTableValue_35 ( HandleRef  pThis,
int  id,
IntPtr  rgba 
) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_GetValueRange_36 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetValueRange_37 ( HandleRef  pThis,
ref double  _arg1,
ref double  _arg2 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_GetValueRange_38 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal int Kitware.VTK.vtkLookupTable.vtkLookupTable_IsA_39 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkLookupTable.vtkLookupTable_IsOpaque_40 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkLookupTable.vtkLookupTable_IsTypeOf_41 ( string  type) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_MapScalarsThroughTable2_42 ( HandleRef  pThis,
IntPtr  input,
IntPtr  output,
int  inputDataType,
int  numberOfValues,
int  inputIncrement,
int  outputIncrement 
) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_MapValue_43 ( HandleRef  pThis,
double  v 
) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_NewInstance_45 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_SafeDownCast_46 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetAlphaRange_47 ( HandleRef  pThis,
double  _arg1,
double  _arg2 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetAlphaRange_48 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetHueRange_49 ( HandleRef  pThis,
double  _arg1,
double  _arg2 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetHueRange_50 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetNanColor_51 ( HandleRef  pThis,
double  _arg1,
double  _arg2,
double  _arg3,
double  _arg4 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetNanColor_52 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetNumberOfColors_53 ( HandleRef  pThis,
int  _arg 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetNumberOfTableValues_54 ( HandleRef  pThis,
int  number 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetRamp_55 ( HandleRef  pThis,
int  _arg 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetRampToLinear_56 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetRampToSCurve_57 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetRampToSQRT_58 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetRange_59 ( HandleRef  pThis,
double  min,
double  max 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetRange_60 ( HandleRef  pThis,
IntPtr  rng 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetSaturationRange_61 ( HandleRef  pThis,
double  _arg1,
double  _arg2 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetSaturationRange_62 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetScale_63 ( HandleRef  pThis,
int  scale 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetScaleToLinear_64 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetScaleToLog10_65 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetTable_66 ( HandleRef  pThis,
HandleRef  arg0 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetTableRange_67 ( HandleRef  pThis,
IntPtr  r 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetTableRange_68 ( HandleRef  pThis,
double  min,
double  max 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetTableValue_69 ( HandleRef  pThis,
int  indx,
IntPtr  rgba 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetTableValue_70 ( HandleRef  pThis,
int  indx,
double  r,
double  g,
double  b,
double  a 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetValueRange_71 ( HandleRef  pThis,
double  _arg1,
double  _arg2 
) [private]
static internal void Kitware.VTK.vtkLookupTable.vtkLookupTable_SetValueRange_72 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal int Kitware.VTK.vtkLookupTable.vtkLookupTable_UsingLogScale_73 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkLookupTable.vtkLookupTable_WritePointer_74 ( HandleRef  pThis,
int  id,
int  number 
) [private]
IntPtr Kitware.VTK.vtkLookupTable.WritePointer ( int  id,
int  number 
)

----------------------------------------------------------------------------


Member Data Documentation

new readonly string Kitware.VTK.vtkLookupTable.MRClassNameKey = "14vtkLookupTable" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkScalarsToColors.

Reimplemented in Kitware.VTK.vtkLookupTableWithEnabling, Kitware.VTK.vtkLogLookupTable, and Kitware.VTK.vtkWindowLevelLookupTable.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkScalarsToColors.

Reimplemented in Kitware.VTK.vtkLookupTableWithEnabling, Kitware.VTK.vtkLogLookupTable, and Kitware.VTK.vtkWindowLevelLookupTable.


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