Solid Edge Geometry Type Library
GetCurvature Method
Specifies the number of parameters to be evaluated.
Specifies the array of parameters at which to evaluate the curvatures.
Returns the array of unit vectors that point toward the center of curvature. Can be NULL if not required.
Returns the array of positive curvature values. The value returned can be 0 (when the radius of curvature is infinite). Can be NULL if not required.
Description
Computes the curvature of the referenced edge at a specified point.
Syntax
Visual Basic
Public Sub GetCurvature( _
   ByVal NumParams As Long, _
   ByRef Params() As Double, _
   ByRef Directions() As Double, _
   ByRef Curvatures() As Double _
) 
Parameters
NumParams
Specifies the number of parameters to be evaluated.
Params
Specifies the array of parameters at which to evaluate the curvatures.
Directions
Returns the array of unit vectors that point toward the center of curvature. Can be NULL if not required.
Curvatures
Returns the array of positive curvature values. The value returned can be 0 (when the radius of curvature is infinite). Can be NULL if not required.
Remarks
This method computes the curvature of the referenced curve edge at a specified point, given an array of parameters on the curve. This method outputs the curvature direction as the unit-vector to the center of curvature. The curvature returned is always positive. The osculating circle that passes through the point defines curvature direction and value at a point on a curve. The osculating circle is the limit of circles that pass through the point and two points on the curve close to the given point. The curvature direction is the direction of the vector from the point to the center of the osculating circle. The curvature direction is always orthogonal to the tangent. Radius of curvature is 1/curvature. The value of curvature can be 0, indicating an infinite radius of curvature (line).
See Also

Curve Object  | Curve Members