appendBottom method

GridWorld appendBottom(
  1. GridWorld other
)

Append the other world to the bottom of this one.

Fill empty columns as needed on the right of the thinner of the two. No attempt to center the thinner one.

Implementation

GridWorld appendBottom(GridWorld other) => paste(_numRows, 0, other);