节点之间的并行链接

时间:2017-09-12 08:15:12

标签: math d3.js webcola

我有一个Webcola& D3 svg图,其中包含节点和链接。 直到今天,节点之间的链接可能是单向的,如果B连接到A,它只是单向链接。 enter image description here

今天我被告知需要支持双向链接,这意味着A可以向B发送链接,B可以向A发送链接。

现在我被困在数学和如何完成它,我使用了一些算法,我发现链接到今天,我想从节点的中心绘制链接,我需要显示2路这样的并行链接: enter image description here

这是我用来计算链接位置的算法:

let parent = connection.parent;

        const sx = parent.source.x;
        const sy = parent.source.y;
        const tx = parent.target.x;
        const ty = parent.target.y;

        let angle = Math.atan2(ty - sy, tx - sx);
        const radiusSource = parent.source.radius;
        const radiusTarget = parent.target.radius;

        let x1 = sx + Math.cos(angle) * radiusSource;
        let x2 = tx - Math.cos(angle) * radiusTarget;
        let y1 = sy + Math.sin(angle) * radiusSource;
        let y2 = ty - Math.sin(angle) * radiusTarget;

        angle = angle * 180 / Math.PI;
        let opposite = Math.abs(angle) > 90;

        if (opposite)
            angle -= 180;

        connection.coords = [x1, y1, x2, y2, angle, opposite];
        return connection.coords;

这是函数的一部分,结果进入' d'像这样的道路的attr:

.attr('d', `M${x1} ${y1} L ${x2} ${y2}`)

现在双向链接的结果是它们互相覆盖,任何人都可以帮助我改进这个算法,这样它会使2路链接并行吗?

1 个答案:

答案 0 :(得分:1)

更新:链接的位置需要通过新弧度计算,考虑偏移量,如:

let parent = connection.parent;

const sx = parent.source.x;
const sy = parent.source.y;
const tx = parent.target.x;
const ty = parent.target.y;
const radiusSource = parent.source.radius;
const radiusTarget = parent.target.radius;

let radian = Math.atan2(ty - sy, tx - sx);
let offset = 0.1 // Offset ratio of radian, can be adjusted
let offsetRadian;

let angle = radian * 180 / Math.PI;
let opposite = Math.abs(angle) > 90;
if (opposite) {
    angle -= 180;
    offsetRadian = radian * (1 + offset);
} else {
    offsetRadian = radian * (1 - offset);
}

let x1 = sx + Math.cos(offsetRadian) * radiusSource;
let y1 = sy + Math.sin(offsetRadian) * radiusSource;

let x2 = tx - Math.sin(offsetRadian) * radiusTarget;
let y2 = ty - Math.cos(offsetRadian) * radiusTarget;

connection.coords = [x1, y1, x2, y2, angle, opposite];
return connection.coords;