Description

A 2D size in pixels.

Since 1.22

Fields

  • w - X position in pixels, from the top-left corner.
  • h - Y position in pixels, from the top-left corner.

Signature

struct @extern Eina.Size2D {
    w: int;
    h: int;
}

C signature

typedef struct _Eina_Size2D {
    int w;
    int h;
} Eina_Size2D;