ActiViz .NET  5.8.0
Public Types | Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkContextDevice2D Class Reference

vtkContextDevice2D - Abstract class for drawing 2D primitives. More...

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

List of all members.

Public Types

enum  TextureProperty { Linear = 2, Nearest = 1, Repeat = 8, Stretch = 4 }
 Set the color for the device using unsigned char of length 4, RGBA. More...

Public Member Functions

 vtkContextDevice2D (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
void ApplyBrush (vtkBrush brush)
 Apply the supplied brush which controls the outlines of shapes, as well as lines, points and related primitives. This makes a deep copy of the vtkBrush object in the vtkContext2D, it does not hold a pointer to the supplied object.
void ApplyPen (vtkPen pen)
 Apply the supplied pen which controls the outlines of shapes, as well as lines, points and related primitives. This makes a deep copy of the vtkPen object in the vtkContext2D, it does not hold a pointer to the supplied object.
void ApplyTextProp (vtkTextProperty prop)
 Apply the supplied text property which controls how text is rendered. This makes a deep copy of the vtkTextProperty object in the vtkContext2D, it does not hold a pointer to the supplied object.
virtual void Begin (vtkViewport arg0)
 Begin drawing, pass in the viewport to set up the view.
virtual void BufferIdModeEnd ()
 BTX Start BufferId creation Mode. The default implementation is empty.
virtual void DisableClipping ()
 Disable clipping of the display.
virtual void DrawEllipseWedge (float x, float y, float outRx, float outRy, float inRx, float inRy, float startAngle, float stopAngle)
 Draw an elliptic wedge with center at x, y, outer radii outRx, outRy, inner radii inRx, inRy between angles startAngle and stopAngle (expressed in degrees).
virtual void DrawEllipticArc (float x, float y, float rX, float rY, float startAngle, float stopAngle)
 Draw an elliptic arc with center at x,y with radii rX and rY between angles startAngle and stopAngle (expressed in degrees).
virtual void DrawImage (IntPtr p, float scale, vtkImageData image)
 Draw the supplied image at the given x, y (p[0], p[1]) (bottom corner), scaled by scale (1.0 would match the image).
virtual void DrawPointSprites (vtkImageData sprite, IntPtr points, int n, IntPtr colors, int nc_comps)
 Draw a series of point sprites, images centred at the points supplied. The supplied vtkImageData is the sprite to be drawn, only squares will be drawn and the size is set using SetPointSize.
virtual void DrawPoints (IntPtr points, int n, IntPtr colors, int nc_comps)
 Draw a series of points - fastest code path due to memory layout of the coordinates. The colors and nc_comps are optional - color array.
virtual void DrawPoly (IntPtr points, int n, IntPtr colors, int nc_comps)
 Draw a poly line using the points - fastest code path due to memory layout of the coordinates. The line will be colored by the colors array, which must be have nc_comps components (defining a single color).
virtual void DrawPolygon (IntPtr arg0, int arg1)
 Draw a polygon using the specified number of points.
virtual void DrawQuad (IntPtr arg0, int arg1)
 Draw a quad using the specified number of points.
virtual void DrawQuadStrip (IntPtr arg0, int arg1)
 Draw a quad using the specified number of points.
virtual void End ()
 End drawing, clean up the view.
virtual vtkBrush GetBrush ()
 Get the pen which controls the outlines of shapes as well as lines, points and related primitives.
virtual bool GetBufferIdMode ()
 Tell if the device context is in BufferId creation mode. Initial value is false.
virtual int GetHeight ()
 Get the width of the device in pixels.
virtual void GetMatrix (vtkMatrix3x3 m)
 Set the model view matrix for the display.
virtual vtkPen GetPen ()
 Get the pen which controls the outlines of shapes, as well as lines, points and related primitives. This object can be modified and the changes will be reflected in subsequent drawing operations.
virtual vtkTextProperty GetTextProp ()
 Get the text properties object for the vtkContext2D.
virtual int GetWidth ()
 Get the width of the device in pixels.
override int IsA (string type)
 Undocumented Block.
virtual void MultiplyMatrix (vtkMatrix3x3 m)
 Multiply the current model view matrix by the supplied one.
new vtkContextDevice2D NewInstance ()
 Undocumented Block.
virtual void PopMatrix ()
 Pop the current matrix off of the stack.
virtual void PushMatrix ()
 Push the current matrix onto the stack.
virtual void SetClipping (IntPtr x)
 Supply a float array of length 4 with x1, y1, width, height specifying clipping region for the device in pixels.
virtual void SetColor4 (IntPtr color)
 Set the color for the device using unsigned char of length 4, RGBA.
virtual void SetLineType (int type)
 Set the line type type (using anonymous enum in vtkPen).
virtual void SetLineWidth (float width)
 Set the line width.
virtual void SetMatrix (vtkMatrix3x3 m)
 Set the model view matrix for the display.
virtual void SetPointSize (float size)
 Set the point size for glyphs/sprites.
virtual void SetTexture (vtkImageData image, int properties)
 Set the texture for the device, it is used to fill the polygons.

Static Public Member Functions

static new int IsTypeOf (string type)
 Undocumented Block.
static new vtkContextDevice2D SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "18vtkContextDevice2D"
 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 void vtkContextDevice2D_ApplyBrush_01 (HandleRef pThis, HandleRef brush)
static internal void vtkContextDevice2D_ApplyPen_02 (HandleRef pThis, HandleRef pen)
static internal void vtkContextDevice2D_ApplyTextProp_03 (HandleRef pThis, HandleRef prop)
static internal void vtkContextDevice2D_Begin_04 (HandleRef pThis, HandleRef arg0)
static internal void vtkContextDevice2D_BufferIdModeEnd_05 (HandleRef pThis)
static internal void vtkContextDevice2D_DisableClipping_06 (HandleRef pThis)
static internal void vtkContextDevice2D_DrawEllipseWedge_07 (HandleRef pThis, float x, float y, float outRx, float outRy, float inRx, float inRy, float startAngle, float stopAngle)
static internal void vtkContextDevice2D_DrawEllipticArc_08 (HandleRef pThis, float x, float y, float rX, float rY, float startAngle, float stopAngle)
static internal void vtkContextDevice2D_DrawImage_09 (HandleRef pThis, IntPtr p, float scale, HandleRef image)
static internal void vtkContextDevice2D_DrawPointSprites_10 (HandleRef pThis, HandleRef sprite, IntPtr points, int n, IntPtr colors, int nc_comps)
static internal void vtkContextDevice2D_DrawPoints_11 (HandleRef pThis, IntPtr points, int n, IntPtr colors, int nc_comps)
static internal void vtkContextDevice2D_DrawPoly_12 (HandleRef pThis, IntPtr points, int n, IntPtr colors, int nc_comps)
static internal void vtkContextDevice2D_DrawPolygon_13 (HandleRef pThis, IntPtr arg0, int arg1)
static internal void vtkContextDevice2D_DrawQuad_14 (HandleRef pThis, IntPtr arg0, int arg1)
static internal void vtkContextDevice2D_DrawQuadStrip_15 (HandleRef pThis, IntPtr arg0, int arg1)
static internal void vtkContextDevice2D_End_16 (HandleRef pThis)
static internal IntPtr vtkContextDevice2D_GetBrush_17 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal byte vtkContextDevice2D_GetBufferIdMode_18 (HandleRef pThis)
static internal int vtkContextDevice2D_GetHeight_19 (HandleRef pThis)
static internal void vtkContextDevice2D_GetMatrix_20 (HandleRef pThis, HandleRef m)
static internal IntPtr vtkContextDevice2D_GetPen_21 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkContextDevice2D_GetTextProp_22 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkContextDevice2D_GetWidth_23 (HandleRef pThis)
static internal int vtkContextDevice2D_IsA_24 (HandleRef pThis, string type)
static internal int vtkContextDevice2D_IsTypeOf_25 (string type)
static internal void vtkContextDevice2D_MultiplyMatrix_26 (HandleRef pThis, HandleRef m)
static internal IntPtr vtkContextDevice2D_NewInstance_27 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkContextDevice2D_PopMatrix_28 (HandleRef pThis)
static internal void vtkContextDevice2D_PushMatrix_29 (HandleRef pThis)
static internal IntPtr vtkContextDevice2D_SafeDownCast_30 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkContextDevice2D_SetClipping_31 (HandleRef pThis, IntPtr x)
static internal void vtkContextDevice2D_SetColor4_32 (HandleRef pThis, IntPtr color)
static internal void vtkContextDevice2D_SetLineType_33 (HandleRef pThis, int type)
static internal void vtkContextDevice2D_SetLineWidth_34 (HandleRef pThis, float width)
static internal void vtkContextDevice2D_SetMatrix_35 (HandleRef pThis, HandleRef m)
static internal void vtkContextDevice2D_SetPointSize_36 (HandleRef pThis, float size)
static internal void vtkContextDevice2D_SetTexture_37 (HandleRef pThis, HandleRef image, int properties)

Static Private Member Functions

static vtkContextDevice2D ()
 Automatically generated type registration mechanics.

Detailed Description

vtkContextDevice2D - Abstract class for drawing 2D primitives.

Description This defines the interface for a vtkContextDevice2D. In this sense a ContextDevice is a class used to paint 2D primitives onto a device, such as an OpenGL context or a QGraphicsView.


Member Enumeration Documentation

Set the color for the device using unsigned char of length 4, RGBA.

Enumerator:
Linear 

enum member

Nearest 

enum member

Repeat 

enum member

Stretch 

enum member


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

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

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


Member Function Documentation

Apply the supplied brush which controls the outlines of shapes, as well as lines, points and related primitives. This makes a deep copy of the vtkBrush object in the vtkContext2D, it does not hold a pointer to the supplied object.

Apply the supplied pen which controls the outlines of shapes, as well as lines, points and related primitives. This makes a deep copy of the vtkPen object in the vtkContext2D, it does not hold a pointer to the supplied object.

Apply the supplied text property which controls how text is rendered. This makes a deep copy of the vtkTextProperty object in the vtkContext2D, it does not hold a pointer to the supplied object.

virtual void Kitware.VTK.vtkContextDevice2D.Begin ( vtkViewport  arg0) [virtual]

Begin drawing, pass in the viewport to set up the view.

BTX Start BufferId creation Mode. The default implementation is empty.

Precondition:
not_yet: !GetBufferIdMode()
bufferId_exists: bufferId!=0
Postcondition:
started: GetBufferIdMode() virtual void BufferIdModeBegin(vtkAbstractContextBufferId *bufferId); ETX Finalize BufferId creation Mode. It makes sure that the content of the bufferId passed in argument of BufferIdModeBegin() is correctly set. The default implementation is empty.
Precondition:
started: GetBufferIdMode()
Postcondition:
done: !GetBufferIdMode()

Disable clipping of the display.

override void Kitware.VTK.vtkContextDevice2D.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.vtkObject.

virtual void Kitware.VTK.vtkContextDevice2D.DrawEllipseWedge ( float  x,
float  y,
float  outRx,
float  outRy,
float  inRx,
float  inRy,
float  startAngle,
float  stopAngle 
) [virtual]

Draw an elliptic wedge with center at x, y, outer radii outRx, outRy, inner radii inRx, inRy between angles startAngle and stopAngle (expressed in degrees).

Precondition:
positive_outRx: outRx>=0
positive_outRy: outRy>=0
positive_inRx: inRx>=0
positive_inRy: inRy>=0
ordered_rx: inRx<=outRx
ordered_ry: inRy<=outRy
virtual void Kitware.VTK.vtkContextDevice2D.DrawEllipticArc ( float  x,
float  y,
float  rX,
float  rY,
float  startAngle,
float  stopAngle 
) [virtual]

Draw an elliptic arc with center at x,y with radii rX and rY between angles startAngle and stopAngle (expressed in degrees).

Precondition:
positive_rX: rX>=0
positive_rY: rY>=0
virtual void Kitware.VTK.vtkContextDevice2D.DrawImage ( IntPtr  p,
float  scale,
vtkImageData  image 
) [virtual]

Draw the supplied image at the given x, y (p[0], p[1]) (bottom corner), scaled by scale (1.0 would match the image).

virtual void Kitware.VTK.vtkContextDevice2D.DrawPoints ( IntPtr  points,
int  n,
IntPtr  colors,
int  nc_comps 
) [virtual]

Draw a series of points - fastest code path due to memory layout of the coordinates. The colors and nc_comps are optional - color array.

virtual void Kitware.VTK.vtkContextDevice2D.DrawPointSprites ( vtkImageData  sprite,
IntPtr  points,
int  n,
IntPtr  colors,
int  nc_comps 
) [virtual]

Draw a series of point sprites, images centred at the points supplied. The supplied vtkImageData is the sprite to be drawn, only squares will be drawn and the size is set using SetPointSize.

Parameters:
colorsis an optional array of colors.
nc_compsis the number of components for the color.
virtual void Kitware.VTK.vtkContextDevice2D.DrawPoly ( IntPtr  points,
int  n,
IntPtr  colors,
int  nc_comps 
) [virtual]

Draw a poly line using the points - fastest code path due to memory layout of the coordinates. The line will be colored by the colors array, which must be have nc_comps components (defining a single color).

virtual void Kitware.VTK.vtkContextDevice2D.DrawPolygon ( IntPtr  arg0,
int  arg1 
) [virtual]

Draw a polygon using the specified number of points.

virtual void Kitware.VTK.vtkContextDevice2D.DrawQuad ( IntPtr  arg0,
int  arg1 
) [virtual]

Draw a quad using the specified number of points.

virtual void Kitware.VTK.vtkContextDevice2D.DrawQuadStrip ( IntPtr  arg0,
int  arg1 
) [virtual]

Draw a quad using the specified number of points.

virtual void Kitware.VTK.vtkContextDevice2D.End ( ) [virtual]

End drawing, clean up the view.

Get the pen which controls the outlines of shapes as well as lines, points and related primitives.

Here is the call graph for this function:

Tell if the device context is in BufferId creation mode. Initial value is false.

virtual int Kitware.VTK.vtkContextDevice2D.GetHeight ( ) [virtual]

Get the width of the device in pixels.

Set the model view matrix for the display.

Get the pen which controls the outlines of shapes, as well as lines, points and related primitives. This object can be modified and the changes will be reflected in subsequent drawing operations.

Here is the call graph for this function:

Get the text properties object for the vtkContext2D.

Here is the call graph for this function:

virtual int Kitware.VTK.vtkContextDevice2D.GetWidth ( ) [virtual]

Get the width of the device in pixels.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Multiply the current model view matrix by the supplied one.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

virtual void Kitware.VTK.vtkContextDevice2D.PopMatrix ( ) [virtual]

Pop the current matrix off of the stack.

virtual void Kitware.VTK.vtkContextDevice2D.PushMatrix ( ) [virtual]

Push the current matrix onto the stack.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Here is the call graph for this function:

virtual void Kitware.VTK.vtkContextDevice2D.SetClipping ( IntPtr  x) [virtual]

Supply a float array of length 4 with x1, y1, width, height specifying clipping region for the device in pixels.

virtual void Kitware.VTK.vtkContextDevice2D.SetColor4 ( IntPtr  color) [virtual]

Set the color for the device using unsigned char of length 4, RGBA.

virtual void Kitware.VTK.vtkContextDevice2D.SetLineType ( int  type) [virtual]

Set the line type type (using anonymous enum in vtkPen).

virtual void Kitware.VTK.vtkContextDevice2D.SetLineWidth ( float  width) [virtual]

Set the line width.

Set the model view matrix for the display.

virtual void Kitware.VTK.vtkContextDevice2D.SetPointSize ( float  size) [virtual]

Set the point size for glyphs/sprites.

virtual void Kitware.VTK.vtkContextDevice2D.SetTexture ( vtkImageData  image,
int  properties 
) [virtual]

Set the texture for the device, it is used to fill the polygons.

static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_ApplyBrush_01 ( HandleRef  pThis,
HandleRef  brush 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_ApplyPen_02 ( HandleRef  pThis,
HandleRef  pen 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_ApplyTextProp_03 ( HandleRef  pThis,
HandleRef  prop 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_Begin_04 ( HandleRef  pThis,
HandleRef  arg0 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_BufferIdModeEnd_05 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_DisableClipping_06 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_DrawEllipseWedge_07 ( HandleRef  pThis,
float  x,
float  y,
float  outRx,
float  outRy,
float  inRx,
float  inRy,
float  startAngle,
float  stopAngle 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_DrawEllipticArc_08 ( HandleRef  pThis,
float  x,
float  y,
float  rX,
float  rY,
float  startAngle,
float  stopAngle 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_DrawImage_09 ( HandleRef  pThis,
IntPtr  p,
float  scale,
HandleRef  image 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_DrawPoints_11 ( HandleRef  pThis,
IntPtr  points,
int  n,
IntPtr  colors,
int  nc_comps 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_DrawPointSprites_10 ( HandleRef  pThis,
HandleRef  sprite,
IntPtr  points,
int  n,
IntPtr  colors,
int  nc_comps 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_DrawPoly_12 ( HandleRef  pThis,
IntPtr  points,
int  n,
IntPtr  colors,
int  nc_comps 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_DrawPolygon_13 ( HandleRef  pThis,
IntPtr  arg0,
int  arg1 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_DrawQuad_14 ( HandleRef  pThis,
IntPtr  arg0,
int  arg1 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_DrawQuadStrip_15 ( HandleRef  pThis,
IntPtr  arg0,
int  arg1 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_End_16 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_GetBrush_17 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal byte Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_GetBufferIdMode_18 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_GetHeight_19 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_GetMatrix_20 ( HandleRef  pThis,
HandleRef  m 
) [private]
static internal IntPtr Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_GetPen_21 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_GetTextProp_22 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal int Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_GetWidth_23 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_IsA_24 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_IsTypeOf_25 ( string  type) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_MultiplyMatrix_26 ( HandleRef  pThis,
HandleRef  m 
) [private]
static internal IntPtr Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_NewInstance_27 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_PopMatrix_28 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_PushMatrix_29 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_SafeDownCast_30 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_SetClipping_31 ( HandleRef  pThis,
IntPtr  x 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_SetColor4_32 ( HandleRef  pThis,
IntPtr  color 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_SetLineType_33 ( HandleRef  pThis,
int  type 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_SetLineWidth_34 ( HandleRef  pThis,
float  width 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_SetMatrix_35 ( HandleRef  pThis,
HandleRef  m 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_SetPointSize_36 ( HandleRef  pThis,
float  size 
) [private]
static internal void Kitware.VTK.vtkContextDevice2D.vtkContextDevice2D_SetTexture_37 ( HandleRef  pThis,
HandleRef  image,
int  properties 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkContextDevice2D.MRClassNameKey = "18vtkContextDevice2D" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkObject.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkObject.


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