Description
Creates the NURBS surface equation by linearly interpolating four corner points.
Syntax
Function RFNurbsSurface.CreateBilinearSurface(pU0V0 As RFPoint3, pU1V0 As RFPoint3, pU0V1 As RFPoint3, pU1V1 As RFPoint3) As RFErrorCode
The CreateBilinearSurface syntax has these parts:
| Part | Description |
|---|---|
| pU0V0 | [IN] RFPoint3 Required. Point corresponding to parameter U = 0 and V = 0. |
| pU1V0 | [IN] RFPoint3 Required. Point corresponding to parameter U = 1 and V = 0. |
| pU0V1 | [IN] RFPoint3 Required. Point corresponding to parameter U = 0 and V = 1. |
| pU1V1 | [IN] RFPoint3 Required. Point corresponding to parameter U = 1 and V = 1. |
Remarks