Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

26 lignes
550B

  1. import graph3;
  2. size(0,200);
  3. usepackage("palatino");
  4. usepackage("mathpazo");
  5. currentprojection=orthographic(4,6,3);
  6. real x(real t) {return cos(2pi*t);}
  7. real y(real t) {return sin(2pi*t);}
  8. real z(real t) {return t;}
  9. defaultpen(overwrite(SuppressQuiet));
  10. path3 p=graph(x,y,z,0,2.7,operator ..);
  11. bbox3 b=autolimits(min(p),max(p));
  12. aspect(b,1,1,1);
  13. xaxis(rotate(X)*"$x$",all=true,b,red,RightTicks(rotate(X)*Label,2,2));
  14. yaxis(rotate(Y)*"$y$",all=true,b,red,RightTicks(rotate(Y)*Label,2,2));
  15. zaxis("$z$",all=true,b,red,RightTicks);
  16. draw(p,Arrow);