Difference between revisions of "User:Andrew Kim"

Line 1: Line 1:
 
Asymptote Test
 
Asymptote Test
 
<asy>
 
<asy>
size(2inch);
+
size(1inch);
draw((0,0)--(2,0)--(2,2)--(0,2)--cycle);
+
pair A,B,C,D;
draw((2,0){up}..{down}(0,0));
+
A=(0,0); B=(10,0); C=(10,4); D=(0,4);
 +
draw(A--B--C--D--cycle);
 
</asy>
 
</asy>

Revision as of 16:55, 28 October 2010

Asymptote Test [asy] size(1inch); pair A,B,C,D; A=(0,0); B=(10,0); C=(10,4); D=(0,4); draw(A--B--C--D--cycle); [/asy]