Package: cairo
Function cairo:region-create-rectangle
Lambda Listcairo:region-create-rectangle (x y width height) ArgumentsReturn ValueThe newly allocated cairo:region-t instance. Details                Allocates a new cairo:region-t instance containing the given
    rectangle.    Free with the cairo:region-destroy function. This function always
  returns a valid instance. If memory cannot be allocated, then a special error
  object is returned where all operations on the object do nothing. You can  check for this with the cairo:region-status function.   Examples(defvar rect (cairo:region-create-rectangle 10 20 100 200)) => RECT (cairo:region-status rect) => :SUCCESS (cairo:region-extents rect) => (10 20 100 200)  | See also | 
2025-09-02