Package: cairo

CStruct cairo-rectangle-int-t

Details

A data structure for holding a rectangle with integer coordinates.
(defcstruct cairo-rectangle-int-t
  (x :int)
  (y :int)
  (width :int)
  (height :int))  
x
An integer x coordinate of the left side of the rectangle.
y
An integer y coordinate of the the top side of the rectangle.
width
An integer with the width of the rectangle.
height
An integer with the height of the rectangle.
 

See also

2020-12-5