最短边路径¶
最短边路径 节点沿着网格边查找朝向所选末端点的路径。用于界定 "最短" 的成本可以设置为任意值。默认情况下每条边都有一个不变的成本,但典型的输入是每条边的长度。
The output is encoded with vertex indices, and is meant to be used on the vertex domain. For each vertex, the Next Vertex Index output gives the index of the following vertex in the path to the "closest" endpoint.
此节点通过 狄克斯特拉算法(Dijkstra's algorithm) 实现。
输入¶
- 末端顶点
终止边路径的目标顶点的选择。
- 边到边
每条边的权重,用于确定 "最短" 的含义
属性¶
该节点没有属性。
输出¶
- 下一顶点编号
从每个顶点到最近端点的最短路径上的以下顶点(由成本输入定义)。
- 总成本
到达结束顶点之前的剩余成本。