class Magick::RVG::Polygon

def initialize(*points)

Use the RVG::ShapeConstructors#polygon method to create Polygon objects in a container.
the polygon.
same as the first, adds an additional point to close
points must be specified. If the last point is not the
define the points that make up the polygon. At least two
Draws a polygon. The arguments are [x, y] pairs that
def initialize(*points)
  super()
  @primitive = :polygon
  @args = polypoints(points)
end