class ChunkyPNG::Vector

def edges(close = true)

Other tags:
    See: #each_edge -

Raises:
  • (ChunkyPNG::ExpectationFailed) - if the vector contains less than two points.

Returns:
  • (Enumerator) - The enumerator that iterates over the edges.

Parameters:
  • () --
def edges(close = true)
  to_enum(:each_edge, close)
end