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

vtkTimeSource - creates a simple time varying data set. More...

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

List of all members.

Public Member Functions

 vtkTimeSourceExample (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkTimeSourceExample ()
 Undocumented Block.
virtual void AnalyticOff ()
 When off (the default) this source produces a discrete set of values. When on, this source produces a value analytically for any queried time.
virtual void AnalyticOn ()
 When off (the default) this source produces a discrete set of values. When on, this source produces a value analytically for any queried time.
virtual int GetAnalytic ()
 When off (the default) this source produces a discrete set of values. When on, this source produces a value analytically for any queried time.
virtual int GetAnalyticMaxValue ()
 When off (the default) this source produces a discrete set of values. When on, this source produces a value analytically for any queried time.
virtual int GetAnalyticMinValue ()
 When off (the default) this source produces a discrete set of values. When on, this source produces a value analytically for any queried time.
virtual int GetGrowing ()
 When off (the default) this produces a single cell data set. When on the the number of cells (in the Y direction) grows and shrinks over time along a hat function.
virtual int GetGrowingMaxValue ()
 When off (the default) this produces a single cell data set. When on the the number of cells (in the Y direction) grows and shrinks over time along a hat function.
virtual int GetGrowingMinValue ()
 When off (the default) this produces a single cell data set. When on the the number of cells (in the Y direction) grows and shrinks over time along a hat function.
virtual double GetXAmplitude ()
 When 0.0 (the default) this produces a data set that is stationary. When on the data set moves in the X/Y plane over a sin wave over time, amplified by the value.
virtual double GetYAmplitude ()
 When 0.0 (the default) this produces a data set that is stationary. When on the data set moves in the X/Y plane over a sin wave over time, amplified by the value.
virtual void GrowingOff ()
 When off (the default) this produces a single cell data set. When on the the number of cells (in the Y direction) grows and shrinks over time along a hat function.
virtual void GrowingOn ()
 When off (the default) this produces a single cell data set. When on the the number of cells (in the Y direction) grows and shrinks over time along a hat function.
override int IsA (string type)
 Undocumented Block.
new vtkTimeSourceExample NewInstance ()
 Undocumented Block.
virtual void SetAnalytic (int _arg)
 When off (the default) this source produces a discrete set of values. When on, this source produces a value analytically for any queried time.
virtual void SetGrowing (int _arg)
 When off (the default) this produces a single cell data set. When on the the number of cells (in the Y direction) grows and shrinks over time along a hat function.
virtual void SetXAmplitude (double _arg)
 When 0.0 (the default) this produces a data set that is stationary. When on the data set moves in the X/Y plane over a sin wave over time, amplified by the value.
virtual void SetYAmplitude (double _arg)
 When 0.0 (the default) this produces a data set that is stationary. When on the data set moves in the X/Y plane over a sin wave over time, amplified by the value.

Static Public Member Functions

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

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "20vtkTimeSourceExample"
 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 vtkTimeSourceExample_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkTimeSourceExample_AnalyticOff_01 (HandleRef pThis)
static internal void vtkTimeSourceExample_AnalyticOn_02 (HandleRef pThis)
static internal int vtkTimeSourceExample_GetAnalytic_03 (HandleRef pThis)
static internal int vtkTimeSourceExample_GetAnalyticMaxValue_04 (HandleRef pThis)
static internal int vtkTimeSourceExample_GetAnalyticMinValue_05 (HandleRef pThis)
static internal int vtkTimeSourceExample_GetGrowing_06 (HandleRef pThis)
static internal int vtkTimeSourceExample_GetGrowingMaxValue_07 (HandleRef pThis)
static internal int vtkTimeSourceExample_GetGrowingMinValue_08 (HandleRef pThis)
static internal double vtkTimeSourceExample_GetXAmplitude_09 (HandleRef pThis)
static internal double vtkTimeSourceExample_GetYAmplitude_10 (HandleRef pThis)
static internal void vtkTimeSourceExample_GrowingOff_11 (HandleRef pThis)
static internal void vtkTimeSourceExample_GrowingOn_12 (HandleRef pThis)
static internal int vtkTimeSourceExample_IsA_13 (HandleRef pThis, string type)
static internal int vtkTimeSourceExample_IsTypeOf_14 (string type)
static internal IntPtr vtkTimeSourceExample_NewInstance_16 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkTimeSourceExample_SafeDownCast_17 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkTimeSourceExample_SetAnalytic_18 (HandleRef pThis, int _arg)
static internal void vtkTimeSourceExample_SetGrowing_19 (HandleRef pThis, int _arg)
static internal void vtkTimeSourceExample_SetXAmplitude_20 (HandleRef pThis, double _arg)
static internal void vtkTimeSourceExample_SetYAmplitude_21 (HandleRef pThis, double _arg)

Static Private Member Functions

static vtkTimeSourceExample ()
 Automatically generated type registration mechanics.

Detailed Description

vtkTimeSource - creates a simple time varying data set.

Description Creates a small easily understood time varying data set for testing. The output is a vtkUntructuredGrid in which the point and cell values vary over time in a sin wave. The analytic ivar controls whether the output corresponds to a step function over time or is continuous. The X and Y Amplitude ivars make the output move in the X and Y directions over time. The Growing ivar makes the number of cells in the output grow and then shrink over time.


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

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

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

Undocumented Block.


Member Function Documentation

When off (the default) this source produces a discrete set of values. When on, this source produces a value analytically for any queried time.

virtual void Kitware.VTK.vtkTimeSourceExample.AnalyticOn ( ) [virtual]

When off (the default) this source produces a discrete set of values. When on, this source produces a value analytically for any queried time.

override void Kitware.VTK.vtkTimeSourceExample.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.vtkUnstructuredGridAlgorithm.

When off (the default) this source produces a discrete set of values. When on, this source produces a value analytically for any queried time.

When off (the default) this source produces a discrete set of values. When on, this source produces a value analytically for any queried time.

When off (the default) this source produces a discrete set of values. When on, this source produces a value analytically for any queried time.

When off (the default) this produces a single cell data set. When on the the number of cells (in the Y direction) grows and shrinks over time along a hat function.

When off (the default) this produces a single cell data set. When on the the number of cells (in the Y direction) grows and shrinks over time along a hat function.

When off (the default) this produces a single cell data set. When on the the number of cells (in the Y direction) grows and shrinks over time along a hat function.

virtual double Kitware.VTK.vtkTimeSourceExample.GetXAmplitude ( ) [virtual]

When 0.0 (the default) this produces a data set that is stationary. When on the data set moves in the X/Y plane over a sin wave over time, amplified by the value.

virtual double Kitware.VTK.vtkTimeSourceExample.GetYAmplitude ( ) [virtual]

When 0.0 (the default) this produces a data set that is stationary. When on the data set moves in the X/Y plane over a sin wave over time, amplified by the value.

virtual void Kitware.VTK.vtkTimeSourceExample.GrowingOff ( ) [virtual]

When off (the default) this produces a single cell data set. When on the the number of cells (in the Y direction) grows and shrinks over time along a hat function.

virtual void Kitware.VTK.vtkTimeSourceExample.GrowingOn ( ) [virtual]

When off (the default) this produces a single cell data set. When on the the number of cells (in the Y direction) grows and shrinks over time along a hat function.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkUnstructuredGridAlgorithm.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkUnstructuredGridAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkUnstructuredGridAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkUnstructuredGridAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkUnstructuredGridAlgorithm.

Here is the call graph for this function:

virtual void Kitware.VTK.vtkTimeSourceExample.SetAnalytic ( int  _arg) [virtual]

When off (the default) this source produces a discrete set of values. When on, this source produces a value analytically for any queried time.

virtual void Kitware.VTK.vtkTimeSourceExample.SetGrowing ( int  _arg) [virtual]

When off (the default) this produces a single cell data set. When on the the number of cells (in the Y direction) grows and shrinks over time along a hat function.

virtual void Kitware.VTK.vtkTimeSourceExample.SetXAmplitude ( double  _arg) [virtual]

When 0.0 (the default) this produces a data set that is stationary. When on the data set moves in the X/Y plane over a sin wave over time, amplified by the value.

virtual void Kitware.VTK.vtkTimeSourceExample.SetYAmplitude ( double  _arg) [virtual]

When 0.0 (the default) this produces a data set that is stationary. When on the data set moves in the X/Y plane over a sin wave over time, amplified by the value.

static internal void Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_AnalyticOff_01 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_AnalyticOn_02 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_GetAnalytic_03 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_GetAnalyticMaxValue_04 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_GetAnalyticMinValue_05 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_GetGrowing_06 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_GetGrowingMaxValue_07 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_GetGrowingMinValue_08 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_GetXAmplitude_09 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_GetYAmplitude_10 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_GrowingOff_11 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_GrowingOn_12 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_IsA_13 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_IsTypeOf_14 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_NewInstance_16 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_SafeDownCast_17 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_SetAnalytic_18 ( HandleRef  pThis,
int  _arg 
) [private]
static internal void Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_SetGrowing_19 ( HandleRef  pThis,
int  _arg 
) [private]
static internal void Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_SetXAmplitude_20 ( HandleRef  pThis,
double  _arg 
) [private]
static internal void Kitware.VTK.vtkTimeSourceExample.vtkTimeSourceExample_SetYAmplitude_21 ( HandleRef  pThis,
double  _arg 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkTimeSourceExample.MRClassNameKey = "20vtkTimeSourceExample" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkUnstructuredGridAlgorithm.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkUnstructuredGridAlgorithm.


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