Guest User

Untitled

a guest
Dec 18th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. documentclass{standalone}
  2. usepackage[inline]{asymptote}
  3. begin{document}
  4. thispagestyle{empty}
  5. begin{asy}
  6. import three;
  7.  
  8. size(200);
  9.  
  10. currentprojection=perspective(4,5,5);
  11.  
  12. // axes
  13. real r=1.5;
  14. draw(Label("$x$",1), O--r*X, Arrow3(HookHead3));
  15. draw(Label("$y$",1), O--r*Y, Arrow3(HookHead3));
  16. draw(Label("$z$",1), O--r*Z, Arrow3(HookHead3));
  17.  
  18. draw(X--Y--Z--X--O--Y--O--Z,red);
  19. end{asy}
  20. end{document}
Add Comment
Please, Sign In to add comment