incrementY method

PRectangle incrementY(
  1. num n
)

Increments y by n.

Implementation

PRectangle incrementY(num n) => PRectangle(x, y + n, width, height);