summaryrefslogtreecommitdiff
path: root/graphics/asymptote/examples/annotation.asy
blob: d52e15b4f761deda16260985c475bc2af4862fbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import annotate;
settings.outformat="pdf";

size(200);

draw(unitcircle);
dot((0,0));
annotate("O","(0,0)",(0,0));
annotate("A","(1,0)",(1,0));
annotate("B","(0,1)",(0,1));
annotate("C","(-1,0)",(-1,0));
annotate("D","(0,-1)",(0,-1));