Table of Contents

Description

A rectangle in pixel dimensions.

Since 1.22

Fields

Signature

struct @extern @free(eina_rectangle_free) Eina.Rect {
    x: int;
    y: int;
    w: int;
    h: int;
}

C signature

typedef struct _Eina_Rect {
    int x;
    int y;
    int w;
    int h;
} Eina_Rect;