Thanks for your quick response!
I have not figured out how to include code nicely (sorry for that!), so i hope my "copy and paste" will work. Here the parameter "Alpha" in the second
pspicture
do not work. If you active
\pagebreak
(take away %), then it works. Further, if you skip the
\pstThreeDCorr
line in the first pspicture, then it works without pagebreak. Seems very strange to me! Do you get the same result? Hope you see what I mean.
Thanks again!
Patrik
Code: Select all
\documentclass{article}
\usepackage{pst-3dplot,pstricks-add}
\begin{document}
\begin{pspicture}(0,0)(5,5)
\psset{Alpha=125,Beta=20}%
\pstThreeDCoor[xMin=-1,xMax=4,yMin=-1,yMax=4,zMin=-1,zMax=3,linecolor=black, nameX=$ $, nameY=$ $,nameZ=$ $]%
\end{pspicture}
% \pagebreak[4]
\begin{pspicture}(0,0)(5,5)
\psset{Alpha=155,Beta=12}%
\parametricplotThreeD[xPlotpoints=200,linewidth=0.6pt,plotstyle=curve,linestyle=dashed](25,205){t cos 3 mul t sin 3 mul 0}%
\parametricplotThreeD[xPlotpoints=200,linewidth=0.6pt,plotstyle=curve,linestyle=solid](205,385){t cos 3 mul t sin 3 mul 0}%
\parametricplotThreeD[xPlotpoints=200,linewidth=0.6pt,plotstyle=curve](-1,1){t 25 cos mul 3 mul t 25 sin mul 3 mul 1 t t mul sub sqrt 3 mul}%
\end{pspicture}
\end{document}