Wolfram: Plot3D Options

By Xah Lee. Date: . Last updated: .

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.
Wolfram BoxRatios 2025-06-20 14008
Wolfram BoxRatios 2025-06-20 14008
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}]}}}
*)

Wolfram. Plot and Visualization