Contents

CGContextClipToRects

Sets the clipping path to the intersection of the current clipping path with the region defined by an array of rectangles.

Declaration

extern void CGContextClipToRects(CGContextRef c, const CGRect *rects, size_t count);

Parameters

  • c:

    The graphics context for which to set the clipping path.

  • rects:

    An array of rectangles. The locations and dimensions of the rectangles are specified in the user space coordinate system.

  • count:

    The total number of array entries in the rects parameter.

Discussion

This function sets the clipping path to the intersection of the current clipping path and the region within the specified rectangles.

After determining the new clipping path, the function resets the context’s current path to an empty path.

See Also

Working with the Current Clipping Path