Rectangular facets to plot3d parameters
[xx,yy,zz]=nf3d(x,y,z)
6 real matrices
Utility function. Used for transforming rectangular facets coded in three matrices x,y,z to scilab code for facets accepted by plot3d.
// A sphere... [x, y, z] = sphere([20, 40]); // plot3d2(x,y,z) is equivalent to... [xx,yy,zz]=nf3d(x,y,z); plot3d(xx,yy,zz);