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