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

vtkParametricDini - Generate Dini's surface. More...

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

List of all members.

Public Member Functions

 vtkParametricDini (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkParametricDini ()
 Construct Dini's surface with the following parameters: MinimumU = 0, MaximumU = 4*Pi, MinimumV = 0.001, MaximumV = 2, JoinU = 0, JoinV = 0, TwistU = 0, TwistV = 0, ClockwiseOrdering = 1, DerivativesAvailable = 1 A = 1, B = 0.2.
override void Evaluate (IntPtr uvw, IntPtr Pt, IntPtr Duvw)
 Dini's surface.
override double EvaluateScalar (IntPtr uvw, IntPtr Pt, IntPtr Duvw)
 Calculate a user defined scalar using one or all of uvw, Pt, Duvw.
virtual double GetA ()
 Set/Get the scale factor. Default = 1.
virtual double GetB ()
 Set/Get the scale factor. Default = 0.2.
override int GetDimension ()
 Description Return the parametric dimension of the class.
override int IsA (string type)
 Undocumented Block.
new vtkParametricDini NewInstance ()
 Undocumented Block.
virtual void SetA (double _arg)
 Set/Get the scale factor. Default = 1.
virtual void SetB (double _arg)
 Set/Get the scale factor. Default = 0.2.

Static Public Member Functions

static new vtkParametricDini New ()
 Construct Dini's surface with the following parameters: MinimumU = 0, MaximumU = 4*Pi, MinimumV = 0.001, MaximumV = 2, JoinU = 0, JoinV = 0, TwistU = 0, TwistV = 0, ClockwiseOrdering = 1, DerivativesAvailable = 1 A = 1, B = 0.2.
static new int IsTypeOf (string type)
 Undocumented Block.
static new vtkParametricDini SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "17vtkParametricDini"
 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 vtkParametricDini_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkParametricDini_Evaluate_01 (HandleRef pThis, IntPtr uvw, IntPtr Pt, IntPtr Duvw)
static internal double vtkParametricDini_EvaluateScalar_02 (HandleRef pThis, IntPtr uvw, IntPtr Pt, IntPtr Duvw)
static internal double vtkParametricDini_GetA_03 (HandleRef pThis)
static internal double vtkParametricDini_GetB_04 (HandleRef pThis)
static internal int vtkParametricDini_GetDimension_05 (HandleRef pThis)
static internal int vtkParametricDini_IsA_06 (HandleRef pThis, string type)
static internal int vtkParametricDini_IsTypeOf_07 (string type)
static internal IntPtr vtkParametricDini_NewInstance_09 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkParametricDini_SafeDownCast_10 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkParametricDini_SetA_11 (HandleRef pThis, double _arg)
static internal void vtkParametricDini_SetB_12 (HandleRef pThis, double _arg)

Static Private Member Functions

static vtkParametricDini ()
 Automatically generated type registration mechanics.

Detailed Description

vtkParametricDini - Generate Dini's surface.

Description vtkParametricDini generates Dini's surface. Dini's surface is a surface that posesses constant negative Gaussian curvature

For further information about this surface, please consult the technical description "Parametric surfaces" in http://www.vtk.org/documents.php in the "VTK Technical Documents" section in the VTk.org web pages.

Thanks Andrew Maclean a.maclean@cas.edu.au for creating and contributing the class.


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

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

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

Construct Dini's surface with the following parameters: MinimumU = 0, MaximumU = 4*Pi, MinimumV = 0.001, MaximumV = 2, JoinU = 0, JoinV = 0, TwistU = 0, TwistV = 0, ClockwiseOrdering = 1, DerivativesAvailable = 1 A = 1, B = 0.2.


Member Function Documentation

override void Kitware.VTK.vtkParametricDini.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.vtkParametricFunction.

override void Kitware.VTK.vtkParametricDini.Evaluate ( IntPtr  uvw,
IntPtr  Pt,
IntPtr  Duvw 
) [virtual]

Dini's surface.

This function performs the mapping $f(u,v) \rightarrow (x,y,x)$, returning it as Pt. It also returns the partial derivatives Du and Dv. $Pt = (x, y, z), Du = (dx/du, dy/du, dz/du), Dv = (dx/dv, dy/dv, dz/dv)$ . Then the normal is $N = Du X Dv$ .

Reimplemented from Kitware.VTK.vtkParametricFunction.

override double Kitware.VTK.vtkParametricDini.EvaluateScalar ( IntPtr  uvw,
IntPtr  Pt,
IntPtr  Duvw 
) [virtual]

Calculate a user defined scalar using one or all of uvw, Pt, Duvw.

uvw are the parameters with Pt being the the cartesian point, Duvw are the derivatives of this point with respect to u, v and w. Pt, Duvw are obtained from Evaluate().

This function is only called if the ScalarMode has the value vtkParametricFunctionSource::SCALAR_FUNCTION_DEFINED

If the user does not need to calculate a scalar, then the instantiated function should return zero.

Reimplemented from Kitware.VTK.vtkParametricFunction.

virtual double Kitware.VTK.vtkParametricDini.GetA ( ) [virtual]

Set/Get the scale factor. Default = 1.

virtual double Kitware.VTK.vtkParametricDini.GetB ( ) [virtual]

Set/Get the scale factor. Default = 0.2.

override int Kitware.VTK.vtkParametricDini.GetDimension ( ) [virtual]

Description Return the parametric dimension of the class.

Reimplemented from Kitware.VTK.vtkParametricFunction.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkParametricFunction.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkParametricFunction.

Construct Dini's surface with the following parameters: MinimumU = 0, MaximumU = 4*Pi, MinimumV = 0.001, MaximumV = 2, JoinU = 0, JoinV = 0, TwistU = 0, TwistV = 0, ClockwiseOrdering = 1, DerivativesAvailable = 1 A = 1, B = 0.2.

Reimplemented from Kitware.VTK.vtkObject.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkParametricFunction.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkParametricFunction.

Here is the call graph for this function:

virtual void Kitware.VTK.vtkParametricDini.SetA ( double  _arg) [virtual]

Set/Get the scale factor. Default = 1.

virtual void Kitware.VTK.vtkParametricDini.SetB ( double  _arg) [virtual]

Set/Get the scale factor. Default = 0.2.

static internal void Kitware.VTK.vtkParametricDini.vtkParametricDini_Evaluate_01 ( HandleRef  pThis,
IntPtr  uvw,
IntPtr  Pt,
IntPtr  Duvw 
) [private]
static internal double Kitware.VTK.vtkParametricDini.vtkParametricDini_EvaluateScalar_02 ( HandleRef  pThis,
IntPtr  uvw,
IntPtr  Pt,
IntPtr  Duvw 
) [private]
static internal double Kitware.VTK.vtkParametricDini.vtkParametricDini_GetA_03 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkParametricDini.vtkParametricDini_GetB_04 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkParametricDini.vtkParametricDini_GetDimension_05 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkParametricDini.vtkParametricDini_IsA_06 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkParametricDini.vtkParametricDini_IsTypeOf_07 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkParametricDini.vtkParametricDini_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkParametricDini.vtkParametricDini_NewInstance_09 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkParametricDini.vtkParametricDini_SafeDownCast_10 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkParametricDini.vtkParametricDini_SetA_11 ( HandleRef  pThis,
double  _arg 
) [private]
static internal void Kitware.VTK.vtkParametricDini.vtkParametricDini_SetB_12 ( HandleRef  pThis,
double  _arg 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkParametricDini.MRClassNameKey = "17vtkParametricDini" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkParametricFunction.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkParametricFunction.


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