Difference between revisions of "User:Andrew Kim"

Line 5: Line 5:
 
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);
 +
draw(A);
 
</asy>
 
</asy>

Revision as of 17:01, 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); draw(A); [/asy]