Struct

WPEPlatformRectangle

Description [src]

struct WPERectangle {
  int x;
  int y;
  int width;
  int height;
}

Boxed type representing a rectangle with integer coordinates.

Structure members
x: int

The X coordinate of the top-left corner of the rectangle.

y: int

The Y coordinate of the top-left corner of the rectangle.

width: int

The width of the rectangle.

height: int

The height of the rectangle.