summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/unitcircle.asy
blob: 582f5f3c1ff7a2ca739c3d3fdc60909374e8364e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
size(0,150);

pair z0=0;
pair z1=1;
real theta=30;
pair z=dir(theta);

draw(circle(z0,1));
filldraw(z0--arc(z0,1,0,theta)--cycle,lightgrey);
dot(z0);
dot(Label,z1);
dot("$(x,y)=(\cos\theta,\sin\theta)$",z);
arrow("area $\frac{\theta}{2}$",dir(0.5*theta),2E);
draw("$\theta$",arc(z0,0.7,0,theta),LeftSide,Arrow,PenMargin);