contra-ngx-img-cropper
Version:
contra image cropper utility
31 lines • 749 B
JavaScript
var Point = (function () {
function Point(x, y) {
if (x === void 0) { x = 0; }
if (y === void 0) { y = 0; }
this.x = x;
this.y = y;
}
Object.defineProperty(Point.prototype, "next", {
get: function () {
return this._next;
},
set: function (p) {
this._next = p;
},
enumerable: true,
configurable: true
});
Object.defineProperty(Point.prototype, "prev", {
get: function () {
return this._prev;
},
set: function (p) {
this._prev = p;
},
enumerable: true,
configurable: true
});
return Point;
}());
export { Point };
//# sourceMappingURL=point.js.map