Difference between revisions of "AoPS Wiki:Sandbox"

Line 9: Line 9:
  
 
<asy>
 
<asy>
unitsize(3mm);
+
 
fill((-4,-4)--(-4,4)--(4,4)--(4,-4)--cycle,blue);
+
unitsize(1cm);
fill((-2,-2)--(-2,2)--(2,2)--(2,-2)--cycle,red);
+
 
path onewhite=(-1,3)--(0,4)--(1,3)--(0,2)--cycle;
+
pair A=(-0.5,0.5), B=(0.5,0.5), C=(0.5,-0.5), D=(-0.5,-0.5);
fill((-3,3)--(-2,4)--(-1,3)--(-2,2)--(-3,3)--(-1,3)--(0,4)--(1,3)--(0,2)--(-1,3)--(1,3)--(2,4)--(3,3)--(2,2)--(1,3)--cycle,white);
+
pair K=(0,1.366), L=(1.366,0), M=(0,-1.366), N=(-1.366,0);
path onewhitel=shift((-2,0))*onewhite;
+
draw(A--N--K--A--B--K--L--B--C--L--M--C--D--M--N--D--A);
path onewhiter=shift((2,0))*onewhite;
+
label("<math>A</math>",A,SE);
path whites=onewhitel^^onewhite^^onewhiter;
+
label("<math>B</math>",B,SW);
fill(whites,white);
+
label("<math>C</math>",C,NW);
fill(rotate(90)*whites,white);
+
label("<math>D</math>",D,NE);
fill(rotate(180)*whites,white);
+
 
fill(rotate(270)*whites,white);
 
 
</asy>
 
</asy>

Revision as of 22:09, 18 February 2008

Welcome to the sandbox, a location to test your newfound wiki-editing abilities.

Please note that all contributions here may be deleted periodically and without warning.

In the computer world, a sandbox is a place to test and experiment -- essentially, it's a place to play.

This is the AoPSWiki Sandbox. Feel free to experiment here.

Warning: anything you place here is subject to deletion without notice.

Sandbox Area

[asy]  unitsize(1cm);  pair A=(-0.5,0.5), B=(0.5,0.5), C=(0.5,-0.5), D=(-0.5,-0.5); pair K=(0,1.366), L=(1.366,0), M=(0,-1.366), N=(-1.366,0); draw(A--N--K--A--B--K--L--B--C--L--M--C--D--M--N--D--A); label("<math>A</math>",A,SE); label("<math>B</math>",B,SW); label("<math>C</math>",C,NW); label("<math>D</math>",D,NE);  [/asy]