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
normally I do it by: foreach {x y z} [expr [hm_nodevalue $nodeid]] {}
from higher tcl version: lassign {*}[hm_nodevalue $nodeid] x y z
Thanks....worked like a charm.
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