class ChunkyPNG::Canvas

def assert_x!(x)

Throws an exception if the x-coordinate is out of bounds.
def assert_x!(x)
  unless include_x?(x)
    raise ChunkyPNG::OutOfBounds, "Column index #{x} out of bounds!"
  end
  true
end