| Author |
Comment/Response |
jf
|
01/27/12 12:10pm
In Response To 'Re: Re: Artifacts in exported transparent planes' --------- As you noted, the big variation is with PDF viewers. The in-Mathematica workaround is to make the planes bitmaps.
test = Show[
Graphics3D[{Opacity[0.5], Blue, Mesh -> None,
Polygon[{{-1, -1, -1}, {1, -1, -1}, {1, 1, 1}, {-1, 1, 1}}]}],
ViewPoint -> {2, -2, 1}];
Export["testrst.pdf", Rasterize[test, ImageResolution -> 200] ]
URL: , |
|