src/app/core/models/objects/generic-object.js
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 = -16776961;
this.visible = true;
}
}