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

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

Revision as of 21:09, 18 September 2019

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