class Polygon::Shape

A polygon shape built by any number of points

Attributes

points[RW]

Public Class Methods

new(points) click to toggle source
# File lib/polygon/shape.rb, line 8
def initialize(points)
  self.points = points
end