# File lib/rvg/pathdata.rb, line 112
        def smooth_quadratic_curveto(abs, x, y, *coords)
            @path << sprintf("%s%g,%g ", (abs ? 'T' : 't'), x, y)
            add_points(2, *coords)
        end