take-shot
Version:
Screenshots with JavaScript
15 lines • 386 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Vector = void 0;
class Vector {
constructor(x, y) {
this.type = 0 /* PathType.VECTOR */;
this.x = x;
this.y = y;
}
add(deltaX, deltaY) {
return new Vector(this.x + deltaX, this.y + deltaY);
}
}
exports.Vector = Vector;
//# sourceMappingURL=vector.js.map