| MeshRange is an option for ListPlot3D, SurfaceGraphics, ListContourPlot, ListDensityPlot and related functions which
specifies the range of a and a coordinates that correspond to the array of a values given. |
In[1]:=
mr = SurfaceGraphics[Table[Sin[x]*Exp[y], {x, -Pi, Pi, Pi/4.}, {y, -E, E, E/4.}], MeshRange -> {{-Pi, Pi}, {-E, E}}, Axes -> True]; Show[mr]
In[2]:=
JavaView[mr]
|