Man Scilab

param3d
Scilab Function

param3d - 3D plot of a parametric curve

Calling Sequence

param3d(x,y,z,[theta,alpha,leg,flag,ebox])

Parameters

Description

param3d is used to plot a 3D curve defined by its coordinates x , y and z . Note that data can also be set or get through the surface entity properties (see surface_properties ).

Note that properties like rotation angles , colors and thickness of the plotted curves can also be set through the param3d entity properties (see param3d_properties ).

Use param3d1 to do multiple plots.

Enter the command param3d() to see a demo.

Examples


t=0:0.1:5*%pi;
param3d(sin(t),cos(t),t/10,35,45,"X@Y@Z",[2,3])
 
  

See Also

param3d1 ,   plot3d ,  

Author

J.Ph.C.

Back