Following up a comment on this question, as part of some image, I want to make a tubular shape and export it for 3d printing like here:
curve = ParametricPlot3D[{a^2, (1 - a)^2, 2*a*(1 - a)}, {a, 0, 1}] /. Line -> (Tube[#, 0.02] &)
Export ["test1.stl", curve]
This works. Now, in a bigger design I need to rotate the curve, so I do this:
curve2 = Graphics3D[Rotate[First@Show[curve],ArcCos[1/Sqrt[3]], {1, -1, 0}, {0, 0, 0}]]
Export["test2.stl", curve2]
which displays the curve rotated, but export now fails:
Export::nodta: "Graphics3D contains no data that can be exported to the \!\(\"STL\"\) format. "
and in indeed, in the bigger design the curve is displayed correctly, but on stl export everything but curve is exported.


Rotateand maybe other geometric transformations is not (yet) fully supported. – Michael E2 Jul 26 '16 at 13:46