ActiViz .NET
5.8.0
|
vtkParametricTorus - Generate a torus. More...
Public Member Functions | |
vtkParametricTorus (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkParametricTorus () | |
Construct a torus with the following parameters: MinimumU = 0, MaximumU = 2*Pi, MinimumV = 0, MaximumV = 2*Pi, JoinU = 1, JoinV = 1, TwistU = 0, TwistV = 0, ClockwiseOrdering = 1, DerivativesAvailable = 1, RingRadius = 1, CrossSectionRadius = 0.5. | |
override void | Evaluate (IntPtr uvw, IntPtr Pt, IntPtr Duvw) |
A torus. | |
override double | EvaluateScalar (IntPtr uvw, IntPtr Pt, IntPtr Duvw) |
Calculate a user defined scalar using one or all of uvw, Pt, Duvw. | |
virtual double | GetCrossSectionRadius () |
Set/Get the radius of the cross section of ring of the torus. The default value is 0.5. | |
override int | GetDimension () |
Description Return the parametric dimension of the class. | |
virtual double | GetRingRadius () |
Set/Get the radius from the center to the middle of the ring of the torus. The default value is 1.0. | |
override int | IsA (string type) |
Undocumented Block. | |
new vtkParametricTorus | NewInstance () |
Undocumented Block. | |
virtual void | SetCrossSectionRadius (double _arg) |
Set/Get the radius of the cross section of ring of the torus. The default value is 0.5. | |
virtual void | SetRingRadius (double _arg) |
Set/Get the radius from the center to the middle of the ring of the torus. The default value is 1.0. | |
Static Public Member Functions | |
static new vtkParametricTorus | New () |
Construct a torus with the following parameters: MinimumU = 0, MaximumU = 2*Pi, MinimumV = 0, MaximumV = 2*Pi, JoinU = 1, JoinV = 1, TwistU = 0, TwistV = 0, ClockwiseOrdering = 1, DerivativesAvailable = 1, RingRadius = 1, CrossSectionRadius = 0.5. | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkParametricTorus | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkParametricTorus" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "18vtkParametricTorus" |
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 | vtkParametricTorus_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkParametricTorus_Evaluate_01 (HandleRef pThis, IntPtr uvw, IntPtr Pt, IntPtr Duvw) |
static internal double | vtkParametricTorus_EvaluateScalar_02 (HandleRef pThis, IntPtr uvw, IntPtr Pt, IntPtr Duvw) |
static internal double | vtkParametricTorus_GetCrossSectionRadius_03 (HandleRef pThis) |
static internal int | vtkParametricTorus_GetDimension_04 (HandleRef pThis) |
static internal double | vtkParametricTorus_GetRingRadius_05 (HandleRef pThis) |
static internal int | vtkParametricTorus_IsA_06 (HandleRef pThis, string type) |
static internal int | vtkParametricTorus_IsTypeOf_07 (string type) |
static internal IntPtr | vtkParametricTorus_NewInstance_09 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkParametricTorus_SafeDownCast_10 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkParametricTorus_SetCrossSectionRadius_11 (HandleRef pThis, double _arg) |
static internal void | vtkParametricTorus_SetRingRadius_12 (HandleRef pThis, double _arg) |
Static Private Member Functions | |
static | vtkParametricTorus () |
Automatically generated type registration mechanics. |
vtkParametricTorus - Generate a torus.
Description vtkParametricTorus generates a torus.
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.
static Kitware.VTK.vtkParametricTorus.vtkParametricTorus | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkParametricTorus.vtkParametricTorus | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Construct a torus with the following parameters: MinimumU = 0, MaximumU = 2*Pi, MinimumV = 0, MaximumV = 2*Pi, JoinU = 1, JoinV = 1, TwistU = 0, TwistV = 0, ClockwiseOrdering = 1, DerivativesAvailable = 1, RingRadius = 1, CrossSectionRadius = 0.5.
override void Kitware.VTK.vtkParametricTorus.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.vtkParametricTorus.Evaluate | ( | IntPtr | uvw, |
IntPtr | Pt, | ||
IntPtr | Duvw | ||
) | [virtual] |
A torus.
This function performs the mapping , returning it as Pt. It also returns the partial derivatives Du and Dv.
. Then the normal is
.
Reimplemented from Kitware.VTK.vtkParametricFunction.
override double Kitware.VTK.vtkParametricTorus.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.vtkParametricTorus.GetCrossSectionRadius | ( | ) | [virtual] |
Set/Get the radius of the cross section of ring of the torus. The default value is 0.5.
override int Kitware.VTK.vtkParametricTorus.GetDimension | ( | ) | [virtual] |
Description Return the parametric dimension of the class.
Reimplemented from Kitware.VTK.vtkParametricFunction.
virtual double Kitware.VTK.vtkParametricTorus.GetRingRadius | ( | ) | [virtual] |
Set/Get the radius from the center to the middle of the ring of the torus. The default value is 1.0.
override int Kitware.VTK.vtkParametricTorus.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkParametricFunction.
static new int Kitware.VTK.vtkParametricTorus.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkParametricFunction.
static new vtkParametricTorus Kitware.VTK.vtkParametricTorus.New | ( | ) | [static] |
Construct a torus with the following parameters: MinimumU = 0, MaximumU = 2*Pi, MinimumV = 0, MaximumV = 2*Pi, JoinU = 1, JoinV = 1, TwistU = 0, TwistV = 0, ClockwiseOrdering = 1, DerivativesAvailable = 1, RingRadius = 1, CrossSectionRadius = 0.5.
Reimplemented from Kitware.VTK.vtkObject.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkParametricFunction.
static new vtkParametricTorus Kitware.VTK.vtkParametricTorus.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkParametricFunction.
virtual void Kitware.VTK.vtkParametricTorus.SetCrossSectionRadius | ( | double | _arg | ) | [virtual] |
Set/Get the radius of the cross section of ring of the torus. The default value is 0.5.
virtual void Kitware.VTK.vtkParametricTorus.SetRingRadius | ( | double | _arg | ) | [virtual] |
Set/Get the radius from the center to the middle of the ring of the torus. The default value is 1.0.
static internal void Kitware.VTK.vtkParametricTorus.vtkParametricTorus_Evaluate_01 | ( | HandleRef | pThis, |
IntPtr | uvw, | ||
IntPtr | Pt, | ||
IntPtr | Duvw | ||
) | [private] |
static internal double Kitware.VTK.vtkParametricTorus.vtkParametricTorus_EvaluateScalar_02 | ( | HandleRef | pThis, |
IntPtr | uvw, | ||
IntPtr | Pt, | ||
IntPtr | Duvw | ||
) | [private] |
static internal double Kitware.VTK.vtkParametricTorus.vtkParametricTorus_GetCrossSectionRadius_03 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkParametricTorus.vtkParametricTorus_GetDimension_04 | ( | HandleRef | pThis | ) | [private] |
static internal double Kitware.VTK.vtkParametricTorus.vtkParametricTorus_GetRingRadius_05 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkParametricTorus.vtkParametricTorus_IsA_06 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkParametricTorus.vtkParametricTorus_IsTypeOf_07 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkParametricTorus.vtkParametricTorus_New | ( | ref uint | mteStatus, |
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkParametricTorus.vtkParametricTorus_NewInstance_09 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkParametricTorus.vtkParametricTorus_SafeDownCast_10 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkParametricTorus.vtkParametricTorus_SetCrossSectionRadius_11 | ( | HandleRef | pThis, |
double | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkParametricTorus.vtkParametricTorus_SetRingRadius_12 | ( | HandleRef | pThis, |
double | _arg | ||
) | [private] |
new readonly string Kitware.VTK.vtkParametricTorus.MRClassNameKey = "18vtkParametricTorus" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkParametricFunction.
new const string Kitware.VTK.vtkParametricTorus.MRFullTypeName = "Kitware.VTK.vtkParametricTorus" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkParametricFunction.