Generate the surface plot. SIDE draws a side wall for the graph. TILT= specifies a tilt angle of 15° for the plot, which doesn't affect the default rotation of 70°.
proc g3d data=reflib.hat;
   plot y*x=z / side
                tilt=15;
run;
quit;