gpt4 book ai didi

graph-theory - 具有组合边的 graphviz

转载 作者:行者123 更新时间:2023-12-03 01:44:36 27 4
gpt4 key购买 nike

我正在寻找一种在 graphviz 中实现类似功能的方法:

          --- node B 
|
node A ---
|
--- node C

另一个例子(在底部):http://machining.grundfos.de/media/60727/grundfos_pumpenhandbuch.pdf#23

有没有办法用 graphviz 来做到这一点?

到目前为止我只得到正交边:

digraph G {
graph [rankdir=LR,splines=ortho,concentrate=true];
node [shape=box,];
edge [dir=none];

a -> b;
a -> c;
}

最佳答案

您必须引入中间(最终隐藏)节点来充当分割点。例如:

digraph G {
graph [rankdir=LR,splines=ortho,concentrate=true];
node [shape=box,];
edge [dir=none];
i [shape=point];
a -> i -> b;
a -> i -> c;
}

产量

enter image description here

关于graph-theory - 具有组合边的 graphviz,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22617837/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com