Mathematica7.0.1で作成されMesh
た3Dサーフェス上の線のレンダリングに問題があります。ContourPlot3D
p=ContourPlot3D[x^4+y^4+z^4-(x^2+y^2+z^2)^2+3(x^2+y^2+z^2)==3,
{x, -2,2}, {y, -2, 2}, {z,-2,2},
BoundaryStyle->Directive[Black,Thickness[.003]],
ContourStyle->Directive[Orange,Opacity[0.5],Specularity[White,300]],
PlotPoints->90,Ticks->None,
MeshStyle->Directive[GrayLevel[.7],Thickness[.001]],
Lighting->{{"Directional",RGBColor[1,1,1],
{ImageScaled@{1,0,1},ImageScaled@{0,0,0}}}}];
p=Graphics[Inset[p,{0,0},Center,{1,1}],
PlotRange->{{-.5,.5},{-.5,.5}},Frame->True]
それらをよく見てください:
Show[p, PlotRange -> {{-.16, -.05}, {0, .1}}]
灰色のMesh
線が多くの場所で表面を形成する三角形と重なっていて、破線にさえ見えることがわかります。これを回避する方法はありますか?