Home > freetb4matlab > nurbs > nrbdeval.m

nrbdeval

PURPOSE ^

NRBDEVAL: Evaluation of the derivative NURBS curve or surface.

SYNOPSIS ^

function [pnt,jac] = nrbdeval(nurbs, dnurbs, tt)

DESCRIPTION ^

 NRBDEVAL: Evaluation of the derivative NURBS curve or surface.

     [pnt, jac] = nrbdeval(crv, dcrv, tt)
     [pnt, jac] = nrbdeval(srf, dsrf, {tu tv})

 INPUTS:

   crv    - original NURBS curve.

   srf    - original NUBRS surface

   dcrv   - NURBS derivative represention of crv

   dsrf   - NURBS derivative represention of surface

   tt     - parametric evaluation points
            If the nurbs is a surface then tt is a cell
            {tu, tv} are the parametric coordinates

   pnt  - evaluated points.
   jac  - evaluated first derivatives (Jacobian).

 Examples:
 
   // Determine the first derivatives a NURBS curve at 9 points for 0.0 to
   // 1.0
   tt = linspace(0.0, 1.0, 9);
   dcrv = nrbderiv(crv);
   [pnts,jac] = nrbdeval(crv, dcrv, tt);

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Fri 22-May-2009 15:13:00 by m2html © 2003