Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. documentclass[a4paper,11pt]{article}
  2. usepackage{tikz, tkz-euclide}
  3. usepackage{tikz-3dplot}
  4. usepackage[margin=2.5cm, vmargin={2.5cm,1.5cm}]{geometry}
  5.  
  6. begin{document}
  7.  
  8. tdplotsetmaincoords{60}{40}
  9. begin{tikzpicture}[tdplot_main_coords,scale=4]
  10. draw[thick,dashed] (0,0,0) -- (-0.2,0,0) ;
  11. draw[thick,dashed] (0,0,0) -- (0,0.2,0) ;
  12. draw[thick,dashed] (0,0,0) -- (0,0,-0.2) ;
  13. draw[thick,->] (0,0,0) -- (1,0,0) node[anchor=north east]{$x$};
  14. draw[thick,->] (0,0,0) -- (0,-1,0) node[anchor=north west]{$y$}; % pas op y-as geinviteerd
  15. draw[thick,->] (0,0,0) -- (0,0,1) node[anchor=south]{$z$};
  16.  
  17. draw[very thick, blue] (0,0,0) -- (1,0,{2/3}) node[anchor=west]{$l$} ; % functie in x-z vlak
  18.  
  19. tdplotsetrotatedcoords{0}{0}{0} %
  20.  
  21. begin{scope}[tdplot_rotated_coords]
  22. foreach p in {0,0.02,...,1}
  23. {tdplotdrawarc[black, very thin]{(0,0,p)}{p*2/3}{0}{360}{}{}{}}
  24. end{scope}
  25.  
  26. end{tikzpicture}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement