@wcardinal/wcardinal-geditor
Version:
WebGL-based graphic editor, tester and viewer for supervisory systems
17 lines • 894 B
JavaScript
import { __extends } from "tslib";
import { ECommandShapePropertyRecursiveSimple } from "./e-command-shape-property-recursive-simple";
var ECommandShapePropertyFillDirection = /** @class */ (function (_super) {
__extends(ECommandShapePropertyFillDirection, _super);
function ECommandShapePropertyFillDirection() {
return _super !== null && _super.apply(this, arguments) || this;
}
ECommandShapePropertyFillDirection.prototype.getProperty = function (shape, capability) {
return shape.fill.direction;
};
ECommandShapePropertyFillDirection.prototype.setProperty = function (shape, capability, property) {
shape.fill.direction = property;
};
return ECommandShapePropertyFillDirection;
}(ECommandShapePropertyRecursiveSimple));
export { ECommandShapePropertyFillDirection };
//# sourceMappingURL=e-command-shape-property-fill-direction.js.map