next up previous
Next: Other Plot Routines Up: Plotting with Maple Previous: Two-Dimensional Plots

Three-Dimensional Plots

Maple provides several routines for plotting expressions in one, two, or three unknowns in space. Some of these commands are found in the library package plots, and so you must have first typed with(plots):

plot3d

implicitplot3d
To plot the surface defined implicitly by the equation in space, use
        implicitplot3d(f(x,y,z) = k, x=a..b,y=c..d,z=e..g);
For example, implicitplot3d(x^2+y^2+z^2=1, x=-1..1,y=-1..1,z=-1..1);

spacecurve
It is also possible to plot parametric curves that are not restricted to the plane: command.
        spacecurve([f1(t), f2(t), f3(t)], t=a..b);
For example, spacecurve([cos(t),sin(t),t],t=0..4*Pi);

In addition, it is possible to animate your plots. For this and other plotting routines and options see the Help Browser.



next up previous
Next: Other Plot Routines Up: Plotting with Maple Previous: Two-Dimensional Plots



Bob Hesse
Wed Oct 23 21:17:40 CDT 1996