ListContourPlot3D.
JavaView Snapshot | Mathematica Snapshot |
JavaView Applet | JavaView Lite Applet |
Zero level of a regular scalar field in 3D. | In[1]:=
<<Graphics`ContourPlot3D` In[2]:= data = Table[ x^2 + 2*y^2 + 3*z^2, {z, -1, 1, .25}, {y, -1, 1, .25}, {x, -1, 1, .25}]; In[3]:= gl = ListContourPlot3D[data, MeshRange -> {{-1, 1}, {-1, 1}, {-1, 1}}, Lighting -> False, Contours -> {1.5, 3.}, Axes -> True, ContourStyle -> {{RGBColor[0, 1, 0]}, {RGBColor[1, 0, 0]}}] In[4]:= JavaView[gl] |