🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

TCL Querry temp node x y z

User: "Merula_20758"
Altair Community Member
Updated by Merula_20758

Hi,

 

probably this question is super simple but I spent 2 hours searching the whole tcl commands for an option to querry the coodinates of a node which I can not find. You know how to do this?

Thanks and best regards,

Merula

Find more posts tagged with

Sort by:
1 - 2 of 21
    User: "tinh"
    Altair Community Member
    Updated by tinh

    Hi,

    normally I do it by:  foreach {x y z} [expr [hm_nodevalue $nodeid]] {}

    from higher tcl version:  lassign {*}[hm_nodevalue $nodeid] x y z

     

    User: "Merula_20758"
    Altair Community Member
    OP
    Updated by Merula_20758

    Thanks....worked like a charm.