*CE_DetailSetTripleByMark

Sets a triple connector detail for a mark of connectors.

Syntax

*CE_DetailSetTripleByMark mark_id detail_name triple_value1 triple_value2 triple_value3 reserved force_storage

Type

HyperMesh Tcl Modify Command

Description

Sets a triple connector detail for a mark of connectors.

Inputs

mark_id
The ID of mark containing the connectors to update. Valid values are 1 and 2.
detail_name
The name of the standard triple detail, or user-defined triple detail, to update. See *CE_DetailSetTriple for valid details.
triple_value1
The first triple value to update for the detail.
triple_value2
The second triple value to update for the detail.
triple_value3
The third triple value to update for the detail.
reserved
Reserved for future use. Must be set to 0.
force_storage
0 - Do not store user-defined detail.
1 - Store user-defined detail.

Examples

To set the projection vector to (0.0, 1.0, 0.0) for connectors 1, 2 and 3:
*createmark connectors 1 1 2 3
*CE_DetailSetTripleByMark 1 ce_ijk 0.0 1.0 0.0 0 0

Errors

Incorrect usage results in a Tcl error. To detect errors, you can use the catch command:
if { [ catch {command_name...} ] } {
   # Handle error
}