hm_nodevalue
Returns the x, y, z coordinates for the specified node.
Syntax
hm_nodevalue node_id
Type
HyperMesh Tcl Query
Description
Returns the x, y, z coordinates for the specified node.
Inputs
- node_id
- The ID of the node to query.
Example
To get the coordinate value for node 100:
hm_nodevalue 100
Errors
Incorrect usage results in a Tcl error. To
detect errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}