我不想在mathematica中使用ContourPlot3D中的框。 Boxed-> False不能正常工作

时间:2017-04-04 21:51:46

标签: plot wolfram-mathematica mathematica-8

mathematica中的ContourPlot3D在框内生成绘图。当我设置"盒装 - >错误",它不能正常工作,盒子不会完全消失。请帮忙,我赶时间,不要责骂。我用来生成球体的代码:

Show[ContourPlot3D[ x^2 + y^2 + z^2 == 25, {x, -5, 5}, {y, -5, 5}, {z, -5, 5}], Boxed -> False]

1 个答案:

答案 0 :(得分:2)

需要再添加一件事:Axes -> False。 这很有效 ContourPlot3D[ x^2 + y^2 + z^2 == 25, {x, -5, 5}, {y, -5, 5}, {z, -5, 5}, Boxed -> False, Axes -> False]