It is easy to make 3D Plots with Mathematica, e.g. use:
Plot3D[Sin[x+y^2],{x,-3,3},{y,-2,2}]
But I want to have nice plots in my thesis, so I decided to use pgfplots for $\LaTeX$ together with Mathematica. There you can use a picture (of Mathematica) and draw with $\LaTeX$ well readable axes etc. around the picture (see e.g. p.44 et seq. here).
But to use both programs together, I need plots which are in a parallel and not perspective projection.
As you can see from the pic,

Mathematica gives me a perspective projection. Is there a way to get a parallel projection?


ViewMatrixoption. The documentation has some usage examples. – Thies Heidecke Oct 28 '12 at 16:54Show[Graphics3D[{Thick, Black, Line[{{-3, -2, -1}, {5, -2, -1}}], Line[{{-3, -2, 1}, {5, -2, 1}}]}], Plot3D[Sin[x + y^2], {x, -3, 3}, {y, -2, 2}]]? – b.gatessucks Oct 28 '12 at 17:03