curveQ: function(x1, y1, x, y, relative) {
        relative = (isArray(x1) ? y1 : relative);
        return this._coords((relative ? 'q' : 'Q'), x1, y1, x, y);
    },