# File lib/rvg/pathdata.rb, line 59
        def lineto(abs, x, y, *coords)
            @path << sprintf("%s%g,%g ", (abs ? 'L' : 'l'), x, y)
            # "a number of coordinate pairs may be specified to draw a polyline"
            add_points(2, *coords)
        end