For reasons of my own I need to display 3D images containing text without the bounding box. However, if I use Show
to display 3D graphics content including several text items, those won't be rendered at all (black text on whit background) or the text is first turned white (originally black string on top of a translucent blue piece of 3D graphics becomes white).
Is this a bug or a feature? How can I overcome this?
A sample snippet below
testitekstit = Graphics3D[{Text["x", {3.2, 0.2, 0.2}], Text["y", {0.2, 3.2, 0.2}],
Text["z", {0.2, 0.2, 3.2}]}];
Show[testitekstit, Boxed->False]
when the last command shows all white.
Best regards,
Jyrki