<< mesh 3d_plot param3d >>

Scilab Help >> Graphics > 3d_plot > nf3d

nf3d

Rectangular facets to plot3d parameters

Syntax

[xx,yy,zz]=nf3d(x,y,z)

Arguments

x,y,x,xx,yy,zz

6 real matrices

Description

Utility function. Used for transforming rectangular facets coded in three matrices x,y,z to scilab code for facets accepted by plot3d.

Examples

// 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);

See also


Report an issue
<< mesh 3d_plot param3d >>