Rectangular facets to plot3d parameters (original) (raw)
Scilab 5.3.3
- Scilab help
- Graphics
- 3d_plot
- comet3d
- contour
- eval3d
- eval3dp
- fac3d
- fcontour
- fplot3d
- fplot3d1
- genfac3d
- geom3d
- hist3d
- mesh
- milk_drop
- nf3d
- param3d
- param3d1
- param3d_properties
- plot3d
- plot3d1
- plot3d2
- plot3d3
- secto3d
- surf
- surface_properties
Please note that the recommended version of Scilab is 2026.0.1. This page might be outdated.
See the recommended documentation of this function
Scilab help >> Graphics > 3d_plot > nf3d
nf3d
rectangular facets to plot3d parameters
Calling Sequence
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
u = linspace(-%pi/2,%pi/2,40); v = linspace(0,2*%pi,20); x= cos(u)'cos(v); y= cos(u)'sin(v); z= sin(u)'*ones(v);
[xx,yy,zz]=nf3d(x,y,z); plot3d(xx,yy,zz)