Difference between revisions of "Asymptote (Vector Graphics Language)"

Line 1: Line 1:
 
<asy>
 
<asy>
 
draw((0,0)--(2,-2)--(5,-1)--(7,-2)--(10,0)--cycle);
 
draw((0,0)--(2,-2)--(5,-1)--(7,-2)--(10,0)--cycle);
draw((5,-2)--(2,-3));
+
draw((4,-2)--(2,-3));
 
draw((5,-2)--(7,-3));
 
draw((5,-2)--(7,-3));
draw((5,-2)--(5,-3));
+
draw((6,-2)--(5,-3));
 
</asy>
 
</asy>

Revision as of 21:06, 18 September 2019

[asy] draw((0,0)--(2,-2)--(5,-1)--(7,-2)--(10,0)--cycle); draw((4,-2)--(2,-3)); draw((5,-2)--(7,-3)); draw((6,-2)--(5,-3)); [/asy]