12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import { GeometricObject } from "../../../core/models/objects/geometric-object";
- import { ELEMENTS_CLASS } from "../../../core/enums/elements-class-enum";
- export class PointModel extends GeometricObject {
-
- constructor(posX, posY, label, id) {
- super(id);
- this.posX = posX;
- this.posY = posY;
- this.setLabel(label);
- super.setClass(ELEMENTS_CLASS.POINT);
- this.definitions = [{ id: this.posX + 5 }, { id: -this.posY - 5 }];
- this.color = -16711936;
- }
-
- update(konvaObject, event) {
- this.posX = konvaObject.attrs.startPosX + event.target._lastPos.x;
- this.posY = konvaObject.attrs.startPosY + event.target._lastPos.y;
- this.definitions = [{ id: this.posX + 5 }, { id: -this.posY - 5 }];
- }
-
- static do(map, list) {
- const id = map.get("id");
- const x = map.get("param")[0] - 5;
- const y = -map.get("param")[1] + 5;
- const label = map.get("label")[0];
- return new PointModel(x, y, label, id);
- }
- }
|