Rect.row constructor

Rect.row(
  1. int x,
  2. int y,
  3. int size
)

Creates a new rectangle a single row in height, as wide as size, with its top left corner at pos.

Implementation

Rect.row(int x, int y, int size) : this(x, y, size, 1);