Important: The information in this document is obsolete and should not be used for new development.
FillCArc
Use theFillCArc
procedure to fill a wedge with a pixel pattern.
PROCEDURE FillCArc (r: Rect; startAngle,arcAngle: Integer; ppat: PixPatHandle);
r
- The rectangle that defines the oval's boundaries.
startAngle
The angle indicating the start of the arc.arcAngle
- The angle indicating the arc's extent.
ppat
- A handle to the
PixPat
record for the pixel pattern to be used for the fill.DESCRIPTION
Using thepatCopy
pattern mode and the pixel pattern defined in aPixPat
record (the handle for which you pass in theppat
parameter), theFillCArc
procedure fills a wedge of the oval bounded by the rectangle that you specify in ther
parameter. As in theFrameArc
procedure, described in the chapter "QuickDraw Drawing" in this book, use thestartAngle
andarcAngle
parameters to define the arc of the wedge. This procedure ignores thepnPat
,pnMode
, andbkPat
fields of the current graphics port and leaves the pen location unchanged.SPECIAL CONSIDERATIONS
TheFillCArc
procedure may move or purge memory blocks in the application heap. Your application should not call this procedure at interrupt time.