# File lib/rvg/pathdata.rb, line 44
            def moveto(abs, x, y, *coords)
                @path << sprintf("%s%g,%g ", (abs ? 'M' : 'm'), x, y)
                # "subsequent pairs are treated as implicit lineto commands"
                add_points(2, *coords)
            end