classType |
Static function that all classes support that returns the type of the class as a string. The returned string matches the string returned by the objectType property. For example if you have a reference to an object and you want to check if it's a SketchLine you can use myObject.objectType == fusion.SketchLine.classType(). |
getCurvature |
Get the curvature value at a parameter position on the curve. |
getCurvatures |
Get the curvature values at a number of parameter positions on the curve. |
getEndPoints |
Get the end points of the curve. |
getFirstDerivative |
Get the first derivative of the curve at the specified parameter position. |
getFirstDerivatives |
Get the first derivatives of the curve at the specified parameter positions. |
getLengthAtParameter |
Get the length of the curve between two parameter positions on the curve. |
getParameterAtLength |
Get the parameter position on the curve that is the specified curve length from the specified starting parameter position. |
getParameterAtPoint |
Get the parameter position that correspond to a point on the curve. For reliable results, the point should lie on the curve within model tolerance. If the point does not lie on the curve, the parameter of the nearest point on the curve will generally be returned. |
getParameterExtents |
Get the parametric range of the curve. |
getParametersAtPoints |
Get the parameter positions that correspond to a set of points on the curve. For reliable results, the points should lie on the curve within model tolerance. If the points do not lie on the curve, the parameter of the nearest point on the curve will generally be returned. |
getPointAtParameter |
Get the point on the curve that corresponds to evaluating a parameter position on the curve. |
getPointsAtParameters |
Get the points on the curve that correspond to evaluating a set of parameter positions on the curve. |
getSecondDerivative |
Get the second derivative of the curve at the specified parameter position. |
getSecondDerivatives |
Get the second derivatives of the curve at the specified parameter positions. |
getStrokes |
Get a sequence of points between two curve parameter positions. The points will be a linear interpolation along the curve between these two parameter positions where the maximum deviation between the curve and each line segment will not exceed the specified tolerance value. |
getTangent |
Get the tangent to the curve at a parameter position on the curve. |
getTangents |
Get the tangent to the curve at a number of parameter positions on the curve. |
getThirdDerivative |
Get the third derivative of the curve at the specified parameter position. |
getThirdDerivatives |
Get the third derivatives of the curve at the specified parameter positions. |