Description
Creates the NURBS curves by projecting the lines on screen to shell.
Syntax
Function RFCurveTools.CreateNurbsCurvesFromScreenRectangle(shellID As RFEntityID, iArraySize As Long, pLineStPts As RFSPoint, pLineEndPts As RFSPoint, pRetCurveIDs As RFEntityID) As RFErrorCode
The CreateNurbsCurvesFromScreenRectangle syntax has these parts:
| Part | Description |
|---|---|
| shellID | [IN] RFEntityID Required. Shell's RFEntityID on which the screen lines are projected. |
| iArraySize | [IN] Long Required. The numbe of pLinePts, pLineEndPts, and pRetCurveIDs. This must be 4. |
| pLineStPts | [IN] RFSPoint Required. Start points of screen lines. |
| pLineEndPts | [IN] RFSPoint Required. End points of screen lines. |
| pRetCurveIDs | [OUT] RFEntityID Required. Created NURBS curve's RFEntityID. |
Remarks