class ChunkyPNG::Canvas

def assert_xy!(x, y)

Throws an exception if the x- or y-coordinate is out of bounds.
def assert_xy!(x, y)
  raise ChunkyPNG::OutOfBounds, "Coordinates (#{x},#{y}) out of bounds!" unless include_xy?(x, y)
  return true
end