Mathematica has great plotting capabilities. However, sometimes what is needed is a very basic black and white plot without textures, lighting, glow and other complex features. So, here is my question: what kind of Plot3D
options will allow me to get something similar to
Answer
I would say you go for the Lighting
option:
Plot3D[Exp[-(x^2 + y^2)], {x, -2, 2}, {y, -2, 2},
Lighting -> {{"Ambient", White}}, PlotRange -> All, Mesh -> {20}]
Comments
Post a Comment