Package: cairo

CStruct cairo-rectangle-t

Details

A data structure for holding a rectangle.
(defcstruct cairo-rectangle-t
  (x :double)
  (y :double)
  (width :double)
  (height :double))  
x
The x coordinate of the left side of the rectangle.
y
The y coordinate of the top side of the rectangle.
width
The width of the rectangle.
height
The height of the rectangle.
 

See also

2021-12-12