Click or drag to resize

NurbsCurveFitParameters Methods

The NurbsCurveFitParameters type exposes the following members.

Methods
  NameDescription
Public methodClone
Supports the ICloneable inteface and creates a new NurbsCurveFitParameters object with the same property values as this instance.
Public methodDispose
Actively reclaims unmanaged resources that this instance uses.
Protected methodDispose(Boolean)
For derived class implementers.

This method is called with argument true when class user calls Dispose(), while with argument false when the Garbage Collector invokes the finalizer, or Finalize() method.

You must reclaim all used unmanaged resources in both cases, and can use this chance to call Dispose on disposable fields if the argument is true.

Also, you must call the base virtual method within your overriding method.

Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Passively reclaims unmanaged resources when the class user did not explicitly call Dispose().
(Overrides ObjectFinalize.)
Public methodGetCurvatureBiasCoefficientFromIntensity
Returns the Curvature bias coefficient that corresponds to a given NurbsCurveFitParameters.Intensity value.
Public methodGetCurvatureBiasIntensityFromCoefficient
Returns the NurbsCurveFitParameters.Intensity value that corresponds to a given curvature bias coefficient.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetPointCountRange
Get the point count range and tolerance.
Public methodGetSmoothingCoefficientFromIntensity
Returns the smoothing coefficient that corresponds to a given NurbsCurveFitParameters.Intensity value.
Public methodGetSmoothingIntensityFromCoefficient
Returns the NurbsCurveFitParameters.Intensity value that corresponds to a given smoothing coefficient.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetUniformityCoefficientFromIntensity
Returns the uniformity coefficient that corresponds to a given NurbsCurveFitParameters.Intensity value.
Public methodGetUniformityIntensityFromCoefficient
Returns the NurbsCurveFitParameters.Intensity value that corresponds to a given uniformity coefficient.
Public methodStatic memberMaximumPointCountForDegree
Given a point count and periodic setting, determine the maximum degree.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodStatic memberMinimumPointCountForDegree
Give a degree and periodic setting, determine the minimum point count.
Public methodSetPointCountRange(Int32, Int32)
Set the point count range and tolerance.
Public methodSetPointCountRange(Int32, Int32, Double)
Set the point count range and tolerance.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodStatic memberValidInput
returns true if the input values are within the acceptable ranges for NURBS curve fitting. If false is returned, the input values should be adjusted before calling the curve fitting function. See also MinimumPointCountForDegree() and MaximumPointCountForDegree().
Top
See Also