G3D Procedure

Example 3: Generating a Tilted Surface Plot

Features:

PLOT statement

PLOT statement options:
SIDE
TILT=
Data set: SASHELP.LAKE
Sample library member: GTDTILT
Simple modifications displayed in Generating A Surface Plot are generated by tilting the surface plot 30 degrees toward you, and adding a side wall.
Tilted Surface Plot

Program

goptions reset=all border;
title "Tilted Surface Plot";
proc g3d data=sashelp.lake;
   plot length*width=depth/
      side
      tilt=30;
run;
quit;

Program Description

Set the graphics environment.
goptions reset=all border;
Define title.
title "Tilted Surface Plot";
Generate the surface plot. The SIDE option draws a side wall for the graph. The TILT= option specifies a tilt angle of 15° for the plot. The initial rotation of 70° is not affected by the TILT= option.
proc g3d data=sashelp.lake;
   plot length*width=depth/
      side
      tilt=30;
run;
quit;