<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=iso-8859-1" http-equiv=Content-Type>
<META name=GENERATOR content="MSHTML 8.00.6001.18999">
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT size=2 face=Arial>Is there an easy way of drawing an arc ?
I have center, start and end co-ordinates as XY. </FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>From what I can see, I need to look
at least 16 combinations to work out the perimeter size depending in
which quadrant the start and ends are in. </FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>procedure Arc(X1, Y1, X2, Y2, X3, Y3, X4, Y4:
Integer);</FONT></DIV>
<DIV><FONT size=2 face=Arial></FONT> </DIV>
<DIV><FONT size=2 face=Arial>Use Arc to draw an elliptically curved line with
the current Pen. The arc traverses the perimeter of an ellipse that is bounded
by the points (X1,Y1) and (X2,Y2). The arc is drawn following the perimeter of
the ellipse, counterclockwise, from the starting point to the ending point. The
starting point is defined by the intersection of the ellipse and a line defined
by the center of the ellipse and (X3,Y3). The ending point is defined by the
intersection of the ellipse and a line defined by the center of the ellipse and
(X4, Y4).</FONT></DIV></BODY></HTML>