GraphicalMarkedArea.ts 676 B

123456789101112131415
  1. import {GraphicalLabel} from "./GraphicalLabel";
  2. import {GraphicalRectangle} from "./GraphicalRectangle";
  3. export class GraphicalMarkedArea {
  4. constructor(systemRectangle: GraphicalRectangle, labelRectangle: GraphicalRectangle = undefined, label: GraphicalLabel = undefined,
  5. settingsLabel: GraphicalLabel = undefined) {
  6. this.systemRectangle = systemRectangle;
  7. this.labelRectangle = labelRectangle;
  8. this.label = label;
  9. this.settings = settingsLabel;
  10. }
  11. public systemRectangle: GraphicalRectangle;
  12. public labelRectangle: GraphicalRectangle;
  13. public label: GraphicalLabel;
  14. public settings: GraphicalLabel;
  15. }