class ChunkyPNG::Point

def eql?(other)

Returns:
  • (true, false) - true iff the x and y coordinates match
def eql?(other)
  other.x == x && other.y == y
end