vert: function(y, relative) {
        this._path += (relative ? 'v' : 'V') + (isArray(y) ? y.join(' ') : y);
        return this;
    },