Important: The information in this document is obsolete and should not be used for new development.
StdArc
TheStdArc
procedure is QuickDraw's standard low-level routine for drawing an arc or a wedge.
PROCEDURE StdArc (verb:\xDDGrafVerb; r:\xDDRect; startAngle,arcAngle:\xDDInteger);
verb
- One of the following actions to perform, as defined for the
GrafVerb
data type:GrafVerb = (frame, paint, erase, invert, fill);
r
- The rectangle to contain the arc.
startAngle
The beginning angle.arcAngle
- The ending angle.
DESCRIPTION
Using the action specified in theverb
parameter, theStdArc
procedure draws an arc or wedge of the oval that fits inside the rectangle specified in ther
parameter. The arc or wedge is bounded by the radii specified in thestartAngle
andarcAngle
parameters. (ThestartAngle
andarcAngle
parameters are illustrated in Figure 3-20 on page 3-68.)SPECIAL CONSIDERATIONS
TheStdArc
procedure may move or purge memory blocks in the application heap. Your application should not call this procedure at interrupt time.