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

Difference between revisions of "User talk:Etodemerzel"

 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<asy>
+
<asy> import three;
size(6cm,0);
+
unitsize(1cm);
 
+
size(6cm);
real u=2.5;
+
currentprojection=orthographic(1/2,-1,1/2); /* three - currentprojection, orthographic */
real v=1;
+
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));
currentprojection=oblique;
+
draw((0,1,0)--(0,1,1));
 
+
draw((1,1,0)--(1,1,1));
path3 y=plane((2u,0,0),(0,2v,0),(-u,-v,0));
+
draw((1,0,0)--(1,0,1));
path3 l=rotate(90,Z)*rotate(90,Y)*y;
+
draw((0,0,1)--(1,0,1)--(1,1,1)--(0,1,1)--cycle,green);</asy>
path3 g=rotate(90,X)*rotate(90,Y)*y;
 
 
 
face[] faces;
 
filldraw(faces.push(y),project(y),blue+opacity(0.5));
 
filldraw(faces.push(l),project(l),green+opacity(0.5));
 
filldraw(faces.push(g),project(g),red+opacity(0.5));
 
 
 
add(faces);
 
 
 
</asy>
 

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]