アップグレード情報:

Graphics`ContourPlot3D`

ContourPlot3DおよびListContourPlot3Dが組込みのMathematicaカーネルに加わった.

ContourPlot3DのシンタックスはGraphics`ContourPlot3D`と同じであるが,Contoursオプションに異なるデフォルト設定を使う:

Version 5.2 << Graphics`ContourPlot3D`;
ContourPlot3D[x^2 + 2 y^2 - z^2, {x, -2, 2}, {y, -2, 2}, {z, -2, 2}]

ListContourPlot3DのシンタックスはGraphics`ContourPlot3D`と同じである:

Version 5.2 data = Table[
  x^2 + 2*y^2 + 3*z^2, {z, -1, 1, .25}, {y, -1, 1, .25}, {x, -1, 
   1, .25}]; ListContourPlot3D[data, Contours -> {1}]

MeshRangeオプションの代りにオプションDataRangeが使われるようになった:

Version 5.2 ListContourPlot3D[data, Contours -> {1}, 
 MeshRange -> {{-1, 1}, {-1, 1}, {-1, 1}}]