Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请参阅此图像最左侧的线。
这不是一个完美的例子,因为线条没有在一个节点上结束,但想象一下图像的左下角有一个节点。如果我有这样的图表,通常在 graphviz 中:
digraph G { a->c b->c }
然后我得到两条单独的行进入c. 是否有可能让这两条线在它们到达之前加入c?
c
是的,可以在两条线到达之前连接它们c,但据我所知,它需要插入一个不可见的节点才能做到这一点。例如:
digraph G { x [style=invis, height=0, label=""] a->x [dir=none] b->x [dir=none] x->c }
... 这使: