@wcardinal/wcardinal-geditor
Version:
WebGL-based graphic editor, tester and viewer for supervisory systems
18 lines • 666 B
JavaScript
import { __extends } from "tslib";
import { EToolShapeEditLine } from "./e-tool-shape-edit-line";
var EToolShapeEditPolygon = /** @class */ (function (_super) {
__extends(EToolShapeEditPolygon, _super);
function EToolShapeEditPolygon() {
return _super !== null && _super.apply(this, arguments) || this;
}
Object.defineProperty(EToolShapeEditPolygon.prototype, "closed", {
get: function () {
return true;
},
enumerable: false,
configurable: true
});
return EToolShapeEditPolygon;
}(EToolShapeEditLine));
export { EToolShapeEditPolygon };
//# sourceMappingURL=e-tool-shape-edit-polygon.js.map