Difference between revisions of "User:5849206328x"

m
m
Line 9: Line 9:
  
 
currentprojection=orthographic(3,-2,2);
 
currentprojection=orthographic(3,-2,2);
xaxis3("$z$",0,5);
+
xaxis3("$z'$",0,5);
yaxis3("$x$",0,5);
+
yaxis3("$x'$",0,5);
zaxis3("$y$",0,5);
+
zaxis3("$y'$",0,5);
  
 
//real f(real x) { return 3 * (-1/x + 1/(2*x^2)); }
 
//real f(real x) { return 3 * (-1/x + 1/(2*x^2)); }
Line 17: Line 17:
 
//triple rot(real t) { return (0.2 * cos(pi * t/180), 0.2 * sin(pi * t/180), 4.5); }
 
//triple rot(real t) { return (0.2 * cos(pi * t/180), 0.2 * sin(pi * t/180), 4.5); }
  
label("$O$",(0,0,0),W); label("$S$",(0,-1,4),W);
+
draw((0,0,4)--(0,1,4),EndArrow3);
 +
label("$O'$",(0,0,0),W); label("$S'$",(0,-1,4),W); label("$v$",(0,1,4),NE);
 
</asy>
 
</asy>

Revision as of 19:54, 25 July 2015

[asy] import graph3; import three;  size(288);  real e  = 2.718281828459045235360287471352662497757247093699959574966967627724076630353; real pi = 3.141592653589793238462643383279502884197169399375105820974944592307816406286;  currentprojection=orthographic(3,-2,2); xaxis3("$z'$",0,5); yaxis3("$x'$",0,5); zaxis3("$y'$",0,5);  //real f(real x) { return 3 * (-1/x + 1/(2*x^2)); } //triple g(real t) { return (2 * cos(pi * t/180), 2 * sin(pi * t/180), 2.5); } //triple rot(real t) { return (0.2 * cos(pi * t/180), 0.2 * sin(pi * t/180), 4.5); }  draw((0,0,4)--(0,1,4),EndArrow3); label("$O'$",(0,0,0),W); label("$S'$",(0,-1,4),W); label("$v$",(0,1,4),NE); [/asy]