Art of Problem Solving

Asymptote (Vector Graphics Language): Difference between revisions

Curiousmonkey (talk | contribs)
No edit summary
Curiousmonkey (talk | contribs)
No edit summary
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),0.5));
draw(ellipse((5,-2),3,0.5));
</asy>
</asy>

Revision as of 20:10, 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(ellipse((5,-2),3,0.5)); [/asy]