Files
html2canvas/dist/lib/render/vector.js
araki-takahiro d6aa9fd1d7 objectfit対応
2020-10-26 10:21:06 +09:00

17 lines
561 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var path_1 = require("./path");
var Vector = /** @class */ (function () {
function Vector(x, y) {
this.type = path_1.PathType.VECTOR;
this.x = x;
this.y = y;
}
Vector.prototype.add = function (deltaX, deltaY) {
return new Vector(this.x + deltaX, this.y + deltaY);
};
return Vector;
}());
exports.Vector = Vector;
exports.isVector = function (path) { return path.type === path_1.PathType.VECTOR; };
//# sourceMappingURL=vector.js.map