Difference between revisions of "User:Andrew Kim"

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

Revision as of 16:55, 28 October 2010

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