class Magick::RVG::Polyline
def initialize(*points)
points must be specified.
define the points that make up the polyline. At least two
Draws a polyline. The arguments are [x, y] pairs that
def initialize(*points) super() points = polypoints(points) @primitive = :polyline @args = Magick::RVG.convert_to_float(*points) end