Difference between revisions of "User talk:Benq"

Line 6: Line 6:
 
C=(-7,24);
 
C=(-7,24);
 
D=(7,-24);
 
D=(7,-24);
 +
E=(2, 24.92);
 +
F= (0,0);
 +
G=(0,-25);
 
draw(A--B);
 
draw(A--B);
 
draw(C--D);
 
draw(C--D);
 +
label("90",E,N);
 +
label("X",F,N);
 +
label("10",G,S);
 
</asy>
 
</asy>

Revision as of 20:03, 7 December 2014

[asy] pair A,B,C,D,E,F,G; draw(circle((0,0),25)); A=(15,20); B=(-7,-24); C=(-7,24); D=(7,-24); E=(2, 24.92); F= (0,0); G=(0,-25); draw(A--B); draw(C--D); label("90",E,N); label("X",F,N); label("10",G,S); [/asy]