MetaDrawAngleArc


This metafile command draws a radius joined to a portion of a circular Arc.

class MetaDrawAngleArc : public Meta
{
 public:
  Point Center;
  unsigned Radius;
  number Start;
  number Sweep;
};

Members

Center The center of the circle containing the arc to be drawn.
Radius The radius of the circle containing the arc to be drawn.
Start The starting angle (in degrees) of the circular arc.
Sweep The sweep angle (in degrees) of the circular arc.

Notes

A Line is drawn from the current position to the beginning of the circular arc. The arc is then drawn. The current position is updated to be the end point of the arc.

The line and arc are drawn using the current pen. The background of the figure is not filled.

If the sweep angle is greater than 360 degrees, the arc is traversed multiple times.