Guest User

Untitled

a guest
Apr 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. documentclass[border=2mm,tikz]{standalone}
  2. usepackage{tikz}
  3. usepackage{tikz-3dplot}
  4.  
  5. begin{document}
  6.  
  7. tdplotsetmaincoords{70}{70}
  8. begin{tikzpicture}[tdplot_main_coords,font=sffamily]
  9.  
  10. draw[-latex] (-7.5,0,0) -- (7.5,0,0) node[above right] {$x$};
  11. draw[-latex] (0,-7.5,0) -- (0,7.5,0) node[below] {$y$};
  12. draw[-latex] (0,0,-7.5) -- (0,0,7.5) node[above left] {$z$};
  13.  
  14. draw[fill=gray,opacity=0.4] (0,-7.5,7.5) -- (0,7.5,7.5) -- (0,7.5,-7.5) -- (0,-7.5,-7.5) -- cycle;
  15. draw[fill=gray,opacity=0.2] (-7.5,0,-7.5) -- (-7.5,0,7.5) -- (7.5,0,7.5) -- (7.5,0,-7.5) -- cycle;
  16.  
  17. end{tikzpicture}
  18.  
  19. end{document}
Add Comment
Please, Sign In to add comment