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.
从这篇文章中可以看出(如何在 booggie 2 中的脚本中将节点类型添加到图中?)可以在 booggie 中将节点/边添加到元模型并更改它们的属性。
是否也可以使用脚本更改图中已经存在的节点(或边)的属性?
Nodes我认为您可以使用andEdges属性获取当前图的所有节点/边。
Nodes
Edges
试试这个:
edgeList = graph.Edges nodeList = graph.Nodes
之后,您可以遍历这些列表for node in nodeList:并整理出具有您想要更改的属性的元素,例如if node.myAttribute == 42:.
for node in nodeList:
if node.myAttribute == 42: