Man Scilab

genfac3d
Scilab Function

genfac3d - compute facets of a 3D surface

Calling Sequence

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

Parameters

Description

genfac3d computes a four sided facets representation of a 3D surface z=f(x,y) defined by x , y and z .

Examples


t=[0:0.3:2*%pi]'; z=sin(t)*cos(t');
[xx,yy,zz]=genfac3d(t,t,z);
plot3d(xx,yy,zz)
 
  

See Also

eval3dp ,   plot3d ,  

Back