Rect.column constructor

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

Creates a new rectangle a single column in width, as tall as size, with its top left corner at pos.

Implementation

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