Guest User

Untitled

a guest
Oct 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. documentclass[border=5mm]{standalone}
  2. usepackage{tikz}
  3.  
  4. tikzset{
  5. 3D/.style={
  6. x={(-3.85mm, -3.85mm)},
  7. y={(1cm, 0cm)},
  8. z={(0cm, 1cm)},
  9. },
  10. }
  11.  
  12.  
  13. begin{document}
  14. begin{tikzpicture}[3D, scale=3]
  15. tikzset{>=stealth, shorten >=1pt}
  16. coordinate (sw) at (+1, -1, 0);
  17. coordinate (nw) at (-1, -1, 0);
  18. coordinate (ne) at (-1, +1, 0);
  19. coordinate (se) at (+1, +1, 0);
  20. coordinate (c) at (0, 0, 0);
  21.  
  22. draw (sw) -- (nw) -- (ne) node[right] {$S_{alpha(t)}$} -- (se) -- cycle;
  23. draw[->] (c) -- ++(0, 0, .7) node[above left] {$N(alpha(t))$};
  24. draw[->] (c) -- ++(-.3, .3, 0) node[below right] {$X'(t)$};
  25. draw[->] (c) -- ++(-.3, .3, .7) node[above right] {$dot X(t)$};
  26. draw[dashed] (c) ++(-.3, .3, 0) -- ++(0, 0, .7);
  27. end{tikzpicture}
  28. end{document}
Add Comment
Please, Sign In to add comment