| 1234567891011121314 |
- /**
- * 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
- */
- export var matrix = function (params, x, y, width, height) {
- var matrix = params[0];
- return matrix;
- };
- //# sourceMappingURL=matrix.js.map
|