Maple Tutorial 8:
Three-Dimensional Graphics

M.M. Yovanovich

TUTORIAL8.MWS

Three-dimensional graphics.

> restart: with(plots):

Sphere.

> plot3d([sin(s)*cos(t), cos(s)*cos(t), sin(t)],
s=0..Pi, t=0..2*Pi, scaling=constrained);

[Maple Plot]

Cone.

> plot3d([2*cos(s), 2*sin(s), t],
s = 0..2*Pi, t = 0..6, scaling=constrained);

[Maple Plot]

> listplot3d([[0,0,0,0,0], [0,0,1,2,2], [0,1,2,1,0], [0,2,3,2,0]],
axes=frame, style=hidden, color=black, orientation = [45,20]);

[Maple Plot]

> tubeplot([2*sin(t), 2*cos(t), t/3], t=-1.5*Pi..2*Pi, orientation=[45,68]);

[Maple Plot]

>