The plot3d command is a Maple-compatible way to draw a surface. It can plot the graph of a function of two variables or a surface given by a parameterization.
If func is a function, this argument is optional, and are the ranges a..b for the variables.
If the ranges are not given, the default values are taken from the graph configuration (see Section 2.5.8).
If funcs is a list of functions, this argument is optional, and are the ranges a..b for the variables.
If the ranges are not given, the default values are taken from the graph configuration (see Section 2.5.8).
plot3d(x*y,x,y) |
plot3d([v*cos(u),v*sin(u),v],u,v) |
plot3d([v*cos(u),v*sin(u),v],u=0..pi,v=0..3) |