hm_ce_getcords
Returns the location of the connector.
Syntax
hm_ce_getcords ce_id
Type
HyperMesh Tcl Query Command
Description
Returns the location of the connector.
Inputs
- ce_id
- The ID of the connector.
Example
To get the coordinate of the connector with ID of 1:
*createmark connectors 1 "by comp" ce_component
set ce_list [ hm_getmark connectors 1];
foreach ce_id $ce_list {
if { $ce_id == 1 } {
set ce_cords_1 [ hm_ce_getcords $ce_id ];
break;
}
}
Errors
None.