Description
Makes two adjacent NURBS curves continuous using specified parameters and returns an RFErrorCode value indicating whether an error occurs.
Syntax
Function RFCurveTools.MatchTwoNurbsCurves(fromCurveID As RFEntityID, toCurveID As RFEntityID, tolerance As Double, type As RFContinuityType) As RFErrorCode
The MatchTwoNurbsCurves syntax has these parts:
| Part | Description |
|---|---|
| fromCurveID | [IN] RFEntityID Required. NURBS curve's RFEntityID to match. |
| toCurveID | [IN] RFEntityID Required. Reference NURBS curve's RFEntityID. |
| tolerance | [IN] Double Required. Distance tolerance to determine whether two points are at the same position. |
| type | [IN] RFContinuityType Required. Type of continuity to match. RF_CONTINUITY_POSITION, RF_CONTINUITY_G1, or RF_CONTINUITY_C1 is allowed. |
Remarks