1234567891011121314151617181920212223 |
- import { GenericObject } from "./generic-object";
- export class GeometricObject extends GenericObject {
- constructor() {
- this.borderColor;
- this.backgroundColor;
- this.edgeThinckness;
- this.label;
- this.dependencies = [];
- }
- setBorderColor(color) {
- this.borderColor = color;
- }
- setBackgroundColor(color) {
- this.backgroundColor = color;
- }
- setEdgeThinckness(edgeThinckness) {
- this.edgeThinckness = edgeThinckness;
- }
- update() {
- throw "not implemented exception";
- }
- }
|