Wolfram: Plot3D Options
xtodo work in progress
Plot Range
similar to 2D case.
Control Smoothness of Surface
PlotPoints
similar to 2D case.
MaxRecursion
similar to 2D case.
No Distortion
BoxRatios
-
A list of 3 numbers for the {Length, Width, Height} in the result box.
BoxRatios -> Automatic
→ show graphics in true scale.

Plot3D[Sin[x] Cos[y], {x, 0, 20}, {y, 0, Pi}, PlotStyle -> White] Plot3D[Sin[x] Cos[y], {x, 0, 20}, {y, 0, Pi}, PlotStyle -> White, BoxRatios -> Automatic]
Show Axes
Axes -> True
Show Bounding Box
Boxed -> True
View Point and Perspective
Surface Color
Lighting
Mesh
Get Actual Values of Options
Plot3D[Sin[x] Cos[y], {x, 0, 2 Pi}, {y, 0, 2 Pi}] AbsoluteOptions[xx, Lighting] (* {Lighting -> {{Ambient, RGBColor[{0.4, 0.2, 0.2}]}, {Directional, RGBColor[{0., 0.18, 0.5}], ImageScaled[{2, 0, 2}]}, {Directional, RGBColor[{0.18, 0.5, 0.18}], ImageScaled[{2, 2, 3}]}, {Directional, RGBColor[{0.5, 0.18, 0.}], ImageScaled[{0, 2, 2}]}, {Directional, RGBColor[{0., 0., 0.18}], ImageScaled[{0, 0, 2}]}}} *)