"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.matrix = void 0; /** * Apply custom matrix for current vector. * @param params [Matrix3] * @param x x of the the bounding box of coordinate * @param y y of the the bounding box of coordinate * @param width width of the the bounding box of coordinate * @param height height of the the bounding box of coordinate * @returns transformer */ var matrix = function (params, x, y, width, height) { var matrix = params[0]; return matrix; }; exports.matrix = matrix; //# sourceMappingURL=matrix.js.map