Important: The information in this document is obsolete and should not be used for new development.
StdArc
TheStdArcprocedure 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
GrafVerbdata 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 theverbparameter, theStdArcprocedure draws an arc or wedge of the oval that fits inside the rectangle specified in therparameter. The arc or wedge is bounded by the radii specified in thestartAngleandarcAngleparameters. (ThestartAngleandarcAngleparameters are illustrated in Figure 3-20 on page 3-68.)SPECIAL CONSIDERATIONS
TheStdArcprocedure may move or purge memory blocks in the application heap. Your application should not call this procedure at interrupt time.