FillCArc
FillCArc Fill a wedge of an oval with specified pattern
#include <Quickdraw.h> Color Quickdraw
void FillCArc( theRect, startAngle, arcAngle, thePat );
Rect *theRect ; rectangle defining position and size
short startAngle ; position where arc begins
short arcAngle ; extent of the arc
FillCArc fills all pixels in a wedge-shaped area with a specified pattern.
The transfer mode is CopyPixPat, overwriting all bits within the area.
theRect is the address of a Rect structure, in local coordinates. It
defines the size and position of the oval, of which the arc is a subset.
startAngle specifies the starting position and . . .
arcAngle specifies the distance along the arc to be drawn. See FrameArc
for a description of rectangular degrees and related information and
examples.
thePpat is a PixPatHandle
Returns: none

Notes: The interior of the wedge, including the output of any previously- executed
frame operation, is overwritten by the pattern.
The pen position is not changed by this function. The cGrafPort's pen
pattern, pen mode, and background pattern are ignored.