Click or drag to resize

NurbsCurveFitParameters Properties

The NurbsCurveFitParameters type exposes the following members.

Properties
  NameDescription
Public propertyApplyTangentMatchingAtKinks
If true, the TangentMatching setting is applied at kinks. Otherwise, TangentMatching applies only to the ends of curves.
Public propertyClampedControlPointCount
Number of control points if the NURBS curve will be clamped. Number of total control points if the NURBS curve will be periodic. This number is >= PointCount() Includes SubDFriendly constrained points and the duplicated point for a clamped closed curve.
Public propertyClosed
Number of total control points if the NURBS curve will be periodic. This number is >= PointCount() and includes periodic duplicates.
Public propertyConstrainedPointCount
If Closed() is true, the number of constrained points is (TangentMatchStart() || TangentMatchEnd() ? 1 : 0) + (TangentMatchStart()?1:0) + (TangentMatchEnd()?1:0). If Closed() is false, the number of constrained points is 2 + (SubDFriendly() ? 2 : 0) + (TangentMatchStart()?1:0) + (TangentMatchEnd()?1:0).
Public propertyCurvatureBiasCoefficient
When CurvatureBiasIntensity == NurbsCurveFitParameters.Intensity::Custom, this value is used as the curvature bias parameter.
Public propertyCurvatureBiasIntensity
Curvature bias is used to make the fit curve stay close to regions of relatively high curvature. Use CurvatureBiasCoefficient() to convert this enum to the the value passed to the optimizer.
Public propertyStatic memberDefaultDegree
The default degree of the fit
Public propertyStatic memberDefaultSampleCount
Default number of points to sample from input curves and pass to the fitter that creates the output NURBS curve.
Public propertyDegree
The degree of the resulting curve
Public propertyKinkAngleDegrees
The angle, in degrees, used to determine if when an abrupt change in tangent or curvature vector direction is a kink.
Public propertyKinkAngleRadians
The angle, in radians, used to determine if when an abrupt change in tangent or curvature vector direction is a kink.
Public propertyKinkSplitting
Gets or sets the kink splitting behavior used when fitting a NURBS curve. See also
Public propertyStatic memberMaximumDegree
The maximum degree of the fit
Public propertyStatic memberMaximumPointCount
Gets the maximum number of points supported for NURBS curve fitting operations.
Public propertyStatic memberMaximumSampleCount
Maximum number of points to sample from input curves and pass to the fitter that creates the output NURBS curve.
Public propertyStatic memberMinimumClampedPointCount
The minimum clamped point count
Public propertyStatic memberMinimumClosedPointCount
The minimum closed point count
Public propertyStatic memberMinimumDegree
The minimum degree of the fit
Public propertyStatic memberMinimumSampleCount
Minimum number of points to sample from input curves and pass to the fitter that creates the output NURBS curve.
Public propertyOptimizeCurve
If OptimizeCurve = false, then all options below are ignored and the Greville interpolant is returned. Rhino 1 - Rhino 8 Rebuild command created a result similar to what's created when m_bOptimizeCurve = false.
Public propertyPeriodicControlPointCount
Number of total control points if the NURBS curve will be periodic. This number is >= PointCount() and includes periodic duplicates.
Public propertyPointCount
Number of distinct control points in the NURBS curve fit. If a range of point counts is possible, this is the minimum number.
Public propertyPointCountRange
Gets or sets the point count range as an IndexPair.
Public propertyPointCountRangeMaximum
Public propertyPointCountRangeMinimum
Public propertyPointCountRangeTolerance
When a range of point counts is permitted and PointCountRangeTolerance greater than 0, then searching for the NURBS curve fit terminates if the separation is less than or equal to PointCountRangeTolerance.
Public propertySampleCount
This is the number of points the NURBS curve is fit through. Is it common for these points to be sampled from an input curve.
Public propertySmoothingCoefficient
When SmoothingIntensity == NurbsCurveFitParameters.Intensity::Custom, this value is used as the smoothing parameter.
Public propertySmoothingIntensity
Smoothing penalty used to make triples of consecutive control polygon points colinear. Use SmoothingCoefficient() to convert this enum to the the value passed to the optimizer.
Public propertySubDFriendly
Gets or sets the SubDFriendly property. When true, the resulting curve will be more likely to have good subdivision surface properties, such as fewer kinks and more even parameterization. This is accomplished by using a more aggressive kink splitting strategy and by using the SmoothingCoefficient to bias the fit towards smoother curves.
Public propertyTangentMatching
Gets ot Sets the TangentMatching value
Public propertyUniformityCoefficient
When UniformityIntensity == NurbsCurveFitParameters.Intensity::Custom, this value is used as the uniformity parameter.
Public propertyUniformityIntensity
Uniformity penalty used to make the distance between control points more equal. Use UniformityCoefficient() to convert this enum to the the value passed to the optimizer.
Public propertyVariablePointCount
Top
See Also