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

vtkParametricFigure8Klein - Generate a figure-8 Klein bottle. More...

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

List of all members.

Public Member Functions

 vtkParametricFigure8Klein (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkParametricFigure8Klein ()
 Construct a figure-8 Klein Bottle with the following parameters: MinimumU = -Pi, MaximumU = Pi, MinimumV = -Pi, MaximumV = Pi, JoinU = 1, JoinV = 1, TwistU = 0, TwistV = 0, ClockwiseOrdering = 1, DerivativesAvailable = 1, Radius = 1.
override void Evaluate (IntPtr uvw, IntPtr Pt, IntPtr Duvw)
 A Figure-8 Klein bottle.
override double EvaluateScalar (IntPtr uvw, IntPtr Pt, IntPtr Duvw)
 Calculate a user defined scalar using one or all of uvw, Pt, Duvw.
override int GetDimension ()
 Description Return the parametric dimension of the class.
virtual double GetRadius ()
 Set/Get the radius of the bottle.
override int IsA (string type)
 Undocumented Block.
new vtkParametricFigure8Klein NewInstance ()
 Undocumented Block.
virtual void SetRadius (double _arg)
 Set/Get the radius of the bottle.

Static Public Member Functions

static new
vtkParametricFigure8Klein 
New ()
 Construct a figure-8 Klein Bottle with the following parameters: MinimumU = -Pi, MaximumU = Pi, MinimumV = -Pi, MaximumV = Pi, JoinU = 1, JoinV = 1, TwistU = 0, TwistV = 0, ClockwiseOrdering = 1, DerivativesAvailable = 1, Radius = 1.
static new int IsTypeOf (string type)
 Undocumented Block.
static new
vtkParametricFigure8Klein 
SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "25vtkParametricFigure8Klein"
 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 vtkParametricFigure8Klein_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkParametricFigure8Klein_Evaluate_01 (HandleRef pThis, IntPtr uvw, IntPtr Pt, IntPtr Duvw)
static internal double vtkParametricFigure8Klein_EvaluateScalar_02 (HandleRef pThis, IntPtr uvw, IntPtr Pt, IntPtr Duvw)
static internal int vtkParametricFigure8Klein_GetDimension_03 (HandleRef pThis)
static internal double vtkParametricFigure8Klein_GetRadius_04 (HandleRef pThis)
static internal int vtkParametricFigure8Klein_IsA_05 (HandleRef pThis, string type)
static internal int vtkParametricFigure8Klein_IsTypeOf_06 (string type)
static internal IntPtr vtkParametricFigure8Klein_NewInstance_08 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkParametricFigure8Klein_SafeDownCast_09 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkParametricFigure8Klein_SetRadius_10 (HandleRef pThis, double _arg)

Static Private Member Functions

static vtkParametricFigure8Klein ()
 Automatically generated type registration mechanics.

Detailed Description

vtkParametricFigure8Klein - Generate a figure-8 Klein bottle.

Description vtkParametricFigure8Klein generates a figure-8 Klein bottle. A Klein bottle is a closed surface with no interior and only one surface. It is unrealisable in 3 dimensions without intersecting surfaces. It can be realised in 4 dimensions by considering the map $F:R^2 \rightarrow R^4$ given by:

This representation of the immersion in $R^3$ is formed by taking two Mobius strips and joining them along their boundaries, this is the so called "Figure-8 Klein Bottle"

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.vtkParametricFigure8Klein.vtkParametricFigure8Klein ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

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

Construct a figure-8 Klein Bottle with the following parameters: MinimumU = -Pi, MaximumU = Pi, MinimumV = -Pi, MaximumV = Pi, JoinU = 1, JoinV = 1, TwistU = 0, TwistV = 0, ClockwiseOrdering = 1, DerivativesAvailable = 1, Radius = 1.


Member Function Documentation

override void Kitware.VTK.vtkParametricFigure8Klein.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.vtkParametricFigure8Klein.Evaluate ( IntPtr  uvw,
IntPtr  Pt,
IntPtr  Duvw 
) [virtual]

A Figure-8 Klein bottle.

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.vtkParametricFigure8Klein.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.

Description Return the parametric dimension of the class.

Reimplemented from Kitware.VTK.vtkParametricFunction.

Set/Get the radius of the bottle.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkParametricFunction.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkParametricFunction.

Construct a figure-8 Klein Bottle with the following parameters: MinimumU = -Pi, MaximumU = Pi, MinimumV = -Pi, MaximumV = Pi, JoinU = 1, JoinV = 1, TwistU = 0, TwistV = 0, ClockwiseOrdering = 1, DerivativesAvailable = 1, Radius = 1.

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.vtkParametricFigure8Klein.SetRadius ( double  _arg) [virtual]

Set/Get the radius of the bottle.

static internal void Kitware.VTK.vtkParametricFigure8Klein.vtkParametricFigure8Klein_Evaluate_01 ( HandleRef  pThis,
IntPtr  uvw,
IntPtr  Pt,
IntPtr  Duvw 
) [private]
static internal double Kitware.VTK.vtkParametricFigure8Klein.vtkParametricFigure8Klein_EvaluateScalar_02 ( HandleRef  pThis,
IntPtr  uvw,
IntPtr  Pt,
IntPtr  Duvw 
) [private]
static internal int Kitware.VTK.vtkParametricFigure8Klein.vtkParametricFigure8Klein_GetDimension_03 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkParametricFigure8Klein.vtkParametricFigure8Klein_GetRadius_04 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkParametricFigure8Klein.vtkParametricFigure8Klein_IsA_05 ( HandleRef  pThis,
string  type 
) [private]
static internal IntPtr Kitware.VTK.vtkParametricFigure8Klein.vtkParametricFigure8Klein_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkParametricFigure8Klein.vtkParametricFigure8Klein_NewInstance_08 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkParametricFigure8Klein.vtkParametricFigure8Klein_SafeDownCast_09 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkParametricFigure8Klein.vtkParametricFigure8Klein_SetRadius_10 ( HandleRef  pThis,
double  _arg 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkParametricFigure8Klein.MRClassNameKey = "25vtkParametricFigure8Klein" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkParametricFunction.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkParametricFunction.


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