class ChunkyPNG::Vector

def eql?(other)

Returns:
  • (true, false) - true if the list of points are identical

Parameters:
  • other (ChunkyPNG::Vector) -- The vector to compare with.
def eql?(other)
  other.points == points
end