cairo_rectangle_t

A data structure for holding a rectangle. double x; X coordinate of the left side of the rectangle double y; Y coordinate of the the top side of the rectangle double width; width of the rectangle double height; height of the rectangle Since 1.4

struct cairo_rectangle_t {
double x;
double y;
double width;
double height;
}