horiz: function(x, relative) {
        this._path += (relative ? 'h' : 'H') + (isArray(x) ? x.join(' ') : x);
        return this;
    },