# File lib/rvg/pathdata.rb, line 103
        def quadratic_curveto(abs, x1, y1, x, y, *coords)
            @path << sprintf("%s%g,%g %g,%g ", (abs ? 'Q' : 'q'), x1, y1, x, y)
            add_points(4, *coords)
        end