123456789101112131415161718 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.custom = void 0;
- /**
- * Add custom functional transformation for current vector.
- * @param params [callback]
- * @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 custom = function (params, x, y, width, height) {
- var callback = params[0];
- return callback(x, y, width, height);
- };
- exports.custom = custom;
- //# sourceMappingURL=custom.js.map
|