The OdDbNurbSurface class allows you to evaluate a point on a surface and its
derivatives with respect to the u- and v-directions.
Evaluate a Point on a Surface
To evaluate a point on a surface based on the u- and v-parameters, use the
evaluate() method, which requires three parameters: two double values to specify
the u- and v-parameters, and one OdGePoint3d object through which the point is returned.
To evaluate a point on a surface and the first derivatives based on u- and v-parameters,
use the evaluate() method, which requires five parameters: two double values
to specify the u- and v-parameters, one OdGePoint3d object through which the
point is returned, and two OdGeVector3d objects through which the first
derivatives are returned.
To evaluate a point on a surface and the first and second derivatives based on
u- and v-parameters, use the evaluate() method, which requires eight parameters:
two double values to specify the u- and v-parameters, one OdGePoint3d object
through which the point is returned, and five OdGeVector3d objects through
which the derivatives are returned: u-derivative, v-derivative, uu-derivative,
uv-derivative, and vv-derivative.
To evaluate a point on a surface and a specified number of derivatives based
on u- and v-parameters, use the evaluate() method, which requires five parameters:
two double values to specify the u- and v-parameters, one integer value to specify
the degree of derivatives, one OdGePoint3d object through which the point is returned, and one OdGeVector3dArray object through which the derivatives
are returned in the following order: u-deriv, v-deriv, uu-deriv, uv-deriv,
and vv-deriv.