Guest User

Untitled

a guest
May 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. documentclass{article}
  2. RequirePackage{pgfplots}
  3. begin{document}
  4. begin{tikzpicture}
  5. begin{axis}[view={rad(60)}{rad(30)}, trig format=rad, title=all in radians,]
  6. addplot3+ [domain=0:4*pi,samples=19,samples y=0]
  7. ({sin(x)},
  8. {cos(x)},
  9. {2*x/(4*pi)});
  10. node [fill=white,draw=black,anchor=center] at
  11. ({sin(pi/2)},{cos(pi/2)},1) {X};
  12. end{axis}
  13. end{tikzpicture}
  14.  
  15. end{document}
Add Comment
Please, Sign In to add comment