12345678910111213141516171819202122 |
- import { DynamicObject } from "./dynamic-object";
- export class GeometricObject extends DynamicObject {
- constructor() {
- super();
- this.borderColor;
- this.backgroundColor;
- this.edgeThinckness;
- }
- setBorderColor(color) {
- this.borderColor = color;
- }
- setBackgroundColor(color) {
- this.backgroundColor = color;
- }
- setEdgeThinckness(edgeThinckness) {
- this.edgeThinckness = edgeThinckness;
- }
- update(konvaObject, event) {
- throw "not implemented exception";
- }
- }
|