|
@@ -16,16 +16,16 @@ import { DrawerAggregator } from "../../../core/drawers/drawer-aggregator";
|
|
|
import { LineSegmentModel } from "../../line-segment-component/models/line-segment-model";
|
|
|
|
|
|
export class LineDrawer extends LineSegmentDrawer {
|
|
|
- constructor () {
|
|
|
+ constructor() {
|
|
|
super();
|
|
|
this.setElementClass(ELEMENTS_CLASS.LINE);
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- drawByStates (konvaObject) {
|
|
|
+ drawByStates(konvaObject) {
|
|
|
let aggregator = undefined;
|
|
|
if (konvaObject != undefined) {
|
|
|
aggregator = Objects.getByKonvaObject(konvaObject)[0];
|
|
|
- }
|
|
|
+ }
|
|
|
if (this.state == undefined) {
|
|
|
super.setState(LineDrawer.FIRST_POINT_STATE);
|
|
|
} else if (this.state == LineDrawer.FIRST_POINT_STATE) {
|
|
@@ -37,10 +37,10 @@ export class LineDrawer extends LineSegmentDrawer {
|
|
|
this.setAggregatorB(aggregator);
|
|
|
this.drawByPoints([this.pointA, this.pointB], [this.aggregatorA, this.aggregatorB]);
|
|
|
super.setState(LineDrawer.FIRST_POINT_STATE);
|
|
|
- }
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- drawByLineSegment (lineSegment) {
|
|
|
+ drawByLineSegment(lineSegment) {
|
|
|
this.lineSegment = lineSegment;
|
|
|
const group = SelectableDrawer.getKonvaGroup(false);
|
|
|
const text = LineDrawer.getKonvaText(lineSegment, lineSegment.label);
|
|
@@ -61,14 +61,14 @@ export class LineDrawer extends LineSegmentDrawer {
|
|
|
|
|
|
this.konvaObject.zIndex(1);
|
|
|
|
|
|
- this.update(aggregator,null);
|
|
|
+ this.update(aggregator, null);
|
|
|
|
|
|
SelectableDrawer.setMaxIndex(aggregators[0].konvaObject);
|
|
|
SelectableDrawer.setMaxIndex(aggregators[1].konvaObject);
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- drawByPoints (points, aggregators) {
|
|
|
+ drawByPoints(points, aggregators) {
|
|
|
if (points == undefined || points.length < 1) return;
|
|
|
this.setPointA(points[0]);
|
|
|
this.setPointB(points[1]);
|
|
@@ -81,7 +81,7 @@ export class LineDrawer extends LineSegmentDrawer {
|
|
|
|
|
|
this.drawByLineSegment(this.lineSegment);
|
|
|
this.reset();
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
@@ -100,7 +100,7 @@ export class LineDrawer extends LineSegmentDrawer {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -117,22 +117,22 @@ export class LineDrawer extends LineSegmentDrawer {
|
|
|
|
|
|
|
|
|
|
|
|
- update (aggregator, e) {
|
|
|
+ update(aggregator, e) {
|
|
|
if (!aggregator.visible) return;
|
|
|
const pointA = aggregator.genericObject.pointA;
|
|
|
const pointB = aggregator.genericObject.pointB;
|
|
|
const Ax = pointA.posX, Ay = pointA.posY, Bx = pointB.posX, By = pointB.posY;
|
|
|
- const dx = Bx-Ax, dy = By-Ay;
|
|
|
- const size = stageManager.getSize();
|
|
|
+ const dx = Bx - Ax, dy = By - Ay;
|
|
|
+ const size = stageManager.getSize();
|
|
|
const W = size.w;
|
|
|
const H = size.h;
|
|
|
- var Ix, Iy, Ex, Ey;
|
|
|
- var Lg, Rg, Ug, Dg;
|
|
|
+ let Ix, Iy, Ex, Ey;
|
|
|
+ let Lg, Rg, Ug, Dg;
|
|
|
|
|
|
if (dx === 0) {
|
|
|
|
|
|
Ug = -Ay / dy;
|
|
|
- Dg = (H-Ay) / dy;
|
|
|
+ Dg = (H - Ay) / dy;
|
|
|
|
|
|
const ming = Math.min(Ug, Dg);
|
|
|
const maxg = Math.max(Ug, Dg);
|
|
@@ -141,36 +141,36 @@ export class LineDrawer extends LineSegmentDrawer {
|
|
|
Iy = Ay + ming * dy;
|
|
|
Ex = Ax; Rg = 0;
|
|
|
Ey = Ay + maxg * dy;
|
|
|
- }
|
|
|
+ }
|
|
|
else {
|
|
|
|
|
|
Lg = -Ax / dx;
|
|
|
- Rg = (W-Ax) / dx;
|
|
|
+ Rg = (W - Ax) / dx;
|
|
|
Ug = -Ay / dy;
|
|
|
- Dg = (H-Ay) / dy;
|
|
|
+ Dg = (H - Ay) / dy;
|
|
|
|
|
|
- var ming, maxg;
|
|
|
- if (dx>0) {
|
|
|
- if (Lg<Dg) ming = Dg;
|
|
|
+ let ming, maxg;
|
|
|
+ if (dx > 0) {
|
|
|
+ if (Lg < Dg) ming = Dg;
|
|
|
else ming = Lg;
|
|
|
- if (Rg>Ug) maxg = Ug;
|
|
|
+ if (Rg > Ug) maxg = Ug;
|
|
|
else maxg = Rg;
|
|
|
- }
|
|
|
+ }
|
|
|
else {
|
|
|
- if (Lg>Ug) ming = Ug;
|
|
|
+ if (Lg > Ug) ming = Ug;
|
|
|
else ming = Lg;
|
|
|
- if (Rg<Dg) maxg = Dg;
|
|
|
+ if (Rg < Dg) maxg = Dg;
|
|
|
else maxg = Rg;
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
Ix = Ax + ming * dx;
|
|
|
Iy = Ay + ming * dy;
|
|
|
Ex = Ax + maxg * dx;
|
|
|
Ey = Ay + maxg * dy;
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- const points = [Ix, Iy, Ex, Ey];
|
|
|
+ const points = [Ix, Iy, Ex, Ey];
|
|
|
|
|
|
|
|
|
|
|
@@ -181,12 +181,12 @@ export class LineDrawer extends LineSegmentDrawer {
|
|
|
aggregator.konvaObject.children[1].points(points);
|
|
|
|
|
|
super.batchDraw();
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- static getKonvaLine (pointA, pointB, useLabel) {
|
|
|
+ static getKonvaLine(pointA, pointB, useLabel) {
|
|
|
const xA = pointA.posX, xB = pointB.posX,
|
|
|
- yA = pointA.posY, yB = pointB.posY;
|
|
|
+ yA = pointA.posY, yB = pointB.posY;
|
|
|
|
|
|
const slope = (yB - yA) / (xB - xA);
|
|
|
const linearCoefficient = (yA * xB - yB * xA) / (xB - xA);
|
|
@@ -214,11 +214,11 @@ export class LineDrawer extends LineSegmentDrawer {
|
|
|
SelectableDrawer.setSelectableIfIntersectionChanged(line);
|
|
|
|
|
|
return line;
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- static drawKonvaLine (pointA, pointB) {
|
|
|
+ static drawKonvaLine(pointA, pointB) {
|
|
|
const line = LineDrawer.getKonvaLine(pointA, pointB);
|
|
|
return line;
|
|
|
- }
|
|
|
+ }
|
|
|
|
|
|
- }
|
|
|
+}
|