NRBEVAL_DER_W: Compute the derivatives of a NURBS object at the point u
with respect to the weight of the i-th control point.
Calling Sequence:
der = nrbeval_der_p (crv, i, u);
der = nrbeval_der_p (srf, i, p);
der = nrbeval_der_p (srf, i, {u v});
der = nrbeval_der_p (vol, i, p);
der = nrbeval_der_p (vol, i, {u v w});
INPUT:
crv - NURBS curve.
srf - NURBS surface.
vol - NURBS volume.
i - Index of the control point.
u or p(1,:,:) - parametric points along u direction
v or p(2,:,:) - parametric points along v direction
w or p(3,:,:) - parametric points along w direction
OUTPUT:
der - Derivatives.
size(der) = [3, numel(u)] for curves
or [3, numel(u)*numel(v)] for surfaces
or [3, numel(u)*numel(v)*numel(w)] for volumes
Copyright (C) 2015 Jacopo Corno
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Package: nurbs