*CE_InputSigPoints

Imprints nodes or points as significant points on connectors.

Syntax

*CE_InputSigPoints <select_type>=<selection> connector_mark=<mark_id> tolerance=<value>

Type

HyperMesh Tcl Modify Command

Description

Imprints nodes or points as significant points on connectors.

Inputs

<select_type>=<selection>
There are several ways to provide the ID of the mark containing the entities to be imprinted as significant points on connectors. Valid values are 1 and 2. Only one option can be used at a time:
node_mark=<mark_id>
The ID of the mark containing the nodes to be imprinted.
point_mark=<mark_id>
The ID of the mark containing the points to be imprinted.
connector_mark=<mark_id>
The ID of the mark containing the connectors on which to add the significant points.
tolerance=<value>
The tolerance value defining the maximum distance between the nodes/points and the selected connectors.

Examples

To imprint points ID 1-10 as significant points on connector ID 1 using a tolerance 100:
*createmark points 1 1-10
*createmark connectors 2 1
*CE_InputSigPoints point_mark=1 connector_mark=2 tolerance=100

Errors

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

Version History

2022.3