*CE_SetSpecificDetail

Sets a specific detail for all the connectors on the mark.

Syntax

*CE_SetSpecificDetail ce_mark detail_type int_val dbl_val

Type

HyperMesh Tcl Modify

Description

Sets a specific detail for all the connectors on the mark.

Inputs

ce_mark
Mark of connectors.
detail_type
The number for the connector detail you are editing:
Generic Connector Details:
  • 1 = thickness (integer)
  • 2 = user control (integer: 0 or 1)
  • 3 = state (integer: 1 = realized, 2 = failed)
Connector Line Details:
  • 101 = spacing (double)
  • 102 = density (integer)
  • 103 = offset (double)
  • 104 = half spacing (integer: 0 or 1)
int_val
Pass necessary integers values through this parameter.
dbl_val
Pass necessary double values through this parameter.

Examples

Note: A connector must be in user control mode in order to edit the state.
To change the thickness of the connectors on mark 1 from 2T to 3T:
*createmark connectors 1 "displayed"
*CE_SetSpecificDetail 1 1 3 0.0
To change the spacing for a connector with ID 10 and 11 created at a line to 5.0:
*createmark connectors 1 10 11
*CE_SetSpecificDetail 1 101 0 5.0