During AMC testing, the AoPS Wiki is in read-only mode and no edits can be made.

Difference between revisions of "User talk:Etodemerzel"

 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
<asy> import three;
 
<asy> import three;
 
  unitsize(1cm);
 
  unitsize(1cm);
  size(50);
+
  size(6cm);
 
  currentprojection=orthographic(1/2,-1,1/2); /* three - currentprojection, orthographic */
 
  currentprojection=orthographic(1/2,-1,1/2); /* three - currentprojection, orthographic */
  draw((0,0,0)--(1,0,0)--(1,1,0)--(0,1,0)--cycle,red);
+
  draw(surface((0,0,0)--(1,0,0)--(1,1,0)--(0,1,0)--cycle),red+opacity(0.3));
 
  draw((0,0,0)--(0,0,1));
 
  draw((0,0,0)--(0,0,1));
 
  draw((0,1,0)--(0,1,1));
 
  draw((0,1,0)--(0,1,1));

Latest revision as of 11:48, 19 January 2011

[asy] import three;  unitsize(1cm);  size(6cm);  currentprojection=orthographic(1/2,-1,1/2); /* three - currentprojection, orthographic */  draw(surface((0,0,0)--(1,0,0)--(1,1,0)--(0,1,0)--cycle),red+opacity(0.3));  draw((0,0,0)--(0,0,1));  draw((0,1,0)--(0,1,1));  draw((1,1,0)--(1,1,1));  draw((1,0,0)--(1,0,1));  draw((0,0,1)--(1,0,1)--(1,1,1)--(0,1,1)--cycle,green);[/asy]