ohif-viewer/Packages/ohif-lesiontracker/client/compatibility/bidirectionalTool/moveHandle/perpendicularLeftFixedPoint.js
2017-12-28 08:59:25 -02:00

85 lines
2.6 KiB
JavaScript

import { cornerstoneMath } from 'meteor/ohif:cornerstone';
// Move perpendicular line start point
export default function(eventData, data) {
const { distance } = cornerstoneMath.point;
const { start, end, perpendicularStart, perpendicularEnd } = data.handles;
const fudgeFactor = 1;
const fixedPoint = perpendicularEnd;
const movedPoint = eventData.currentPoints.image;
const distanceFromFixed = cornerstoneMath.lineSegment.distanceToPoint(data.handles, fixedPoint);
const distanceFromMoved = cornerstoneMath.lineSegment.distanceToPoint(data.handles, movedPoint);
const distanceBetweenPoints = distance(fixedPoint, movedPoint);
const total = distanceFromFixed + distanceFromMoved;
if (distanceBetweenPoints <= distanceFromFixed) {
return false;
}
const length = distance(start, end);
if (length === 0) {
return false;
}
const dx = (start.x - end.x) / length;
const dy = (start.y - end.y) / length;
const adjustedLineP1 = {
x: start.x - fudgeFactor * dx,
y: start.y - fudgeFactor * dy
};
const adjustedLineP2 = {
x: end.x + fudgeFactor * dx,
y: end.y + fudgeFactor * dy
};
perpendicularStart.x = movedPoint.x;
perpendicularStart.y = movedPoint.y;
perpendicularEnd.x = movedPoint.x - total * dy;
perpendicularEnd.y = movedPoint.y + total * dx;
const longLine = {
start: {
x: start.x,
y: start.y
},
end: {
x: end.x,
y: end.y
}
};
const perpendicularLine = {
start: {
x: perpendicularStart.x,
y: perpendicularStart.y
},
end: {
x: perpendicularEnd.x,
y: perpendicularEnd.y
}
};
const intersection = cornerstoneMath.lineSegment.intersectLine(longLine, perpendicularLine);
if (!intersection) {
if (distance(movedPoint, start) > distance(movedPoint, end)) {
perpendicularStart.x = adjustedLineP2.x + distanceFromMoved * dy;
perpendicularStart.y = adjustedLineP2.y - distanceFromMoved * dx;
perpendicularEnd.x = perpendicularStart.x - total * dy;
perpendicularEnd.y = perpendicularStart.y + total * dx;
} else {
perpendicularStart.x = adjustedLineP1.x + distanceFromMoved * dy;
perpendicularStart.y = adjustedLineP1.y - distanceFromMoved * dx;
perpendicularEnd.x = perpendicularStart.x - total * dy;
perpendicularEnd.y = perpendicularStart.y + total * dx;
}
}
return true;
}