1234567891011121314151617181920 |
- import { identifier } from "../../application/identifier";
- export class GenericObject {
- constructor(id) {
- if (id == undefined) {
- this.id = identifier.next();
- } else {
- this.id = id;
- }
- this.elementClass;
- this.label = "";
- this.labelIgeom = "";
- this.dependentsOnThis = [];
- this.definitions = [];
- this.labelColor = "";
- this.defined = 1;
- this.color = "";
- this.visible = true;
- }
- }
|