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.
我正在研究 Java Infovis Toolkit 中的网络图(ForceDirected):http ://thejit.org/“The jit”。我需要首先绘制节点,然后将邻接添加到创建的每个节点。我必须使用库中定义的 addAdjacence 函数,但我不知道如何。
有谁能够帮我?
假设 fd 是图形对象,我们需要调用以下函数 -
fd.graph.addAdjacence({id:123}, {id:167022});
我们传递两个对象。这里 123 是新节点,167022 是现有节点。