Description
Creates the NURBS curve equation representing the specified circle geometry, and returns an RFErrorCode value indicating whether an error occurs.
Syntax
Function RFCurveTools.CreateCircleNurbsCurve(pCenter As RFPoint3, pNormal As RFVector3, radius As Double, pCurveID As RFEntityID) As RFErrorCode
The CreateCircleNurbsCurve syntax has these parts:
| Part | Description |
|---|---|
| pCenter | [IN] RFPoint3 Required. Center point of the circle to create. |
| pNormal | [IN] RFVector3 Required. Normal vector of the circle to create. |
| radius | [IN] Double Required. Radius of the circle to create. |
| pCurveID | [OUT] RFEntityID Required. Created NURBS curve's RFEntityID. |
Remarks