mirror of
https://github.com/niklasvh/html2canvas.git
synced 2023-08-10 21:13:10 +03:00
29 lines
981 B
JavaScript
29 lines
981 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var PathType;
|
|
(function (PathType) {
|
|
PathType[PathType["VECTOR"] = 0] = "VECTOR";
|
|
PathType[PathType["BEZIER_CURVE"] = 1] = "BEZIER_CURVE";
|
|
})(PathType = exports.PathType || (exports.PathType = {}));
|
|
exports.equalPath = function (a, b) {
|
|
if (a.length === b.length) {
|
|
return a.some(function (v, i) { return v === b[i]; });
|
|
}
|
|
return false;
|
|
};
|
|
exports.transformPath = function (path, deltaX, deltaY, deltaW, deltaH) {
|
|
return path.map(function (point, index) {
|
|
switch (index) {
|
|
case 0:
|
|
return point.add(deltaX, deltaY);
|
|
case 1:
|
|
return point.add(deltaX + deltaW, deltaY);
|
|
case 2:
|
|
return point.add(deltaX + deltaW, deltaY + deltaH);
|
|
case 3:
|
|
return point.add(deltaX, deltaY + deltaH);
|
|
}
|
|
return point;
|
|
});
|
|
};
|
|
//# sourceMappingURL=path.js.map
|