*CE_ConnectorCreate
Creates spot connector(s) at the specified location(s) by mark.
Syntax
*CE_ConnectorCreate entity_type mark_id
Type
HyperMesh Tcl Modify
Description
Creates spot connector(s) at the specified location(s) by mark. No links are added to the created spot connectors.
Inputs
- entity_type
- The entity type that specifies the location to create connectors. Valid values are nodes, points, and lines.
- mark_id
- The ID of the mark containing the entities. Valid values are 1 and 2..
Examples
To create connectors at nodes 1, 2 and
3:
*createmark nodes 1 1 2 3
*CE_ConnectorCreate nodes 1
Errors
Incorrect usage results in a Tcl error. To
detect errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}