Hi all,
is there a possibilty to move a list of nodes instead of move each node seperately?
'''
for node in mesh.Nodes:
newLocX = Quantity(newX * correctionScaling, "m")
newLocY = Quantity(node.Y * correctionScaling, "m")
newLocZ = Quantity(newZ * correctionScaling, "m")
nodeMove.MoveNode(node.Id, newLocX, newLocY, newLocZ)
'''
For Example
'''
id, newLocX, newLocY, newLocZ = zip(*nodeList)
nodeMove.MoveNode(id, newLocX, newLocY, newLocZ)
'''