*linecombine
Combines two free lines into one.
Syntax
*linecombine line_id1 line_id2 smooth
Type
HyperMesh Tcl Modify Command
Description
Combines two free lines into one.
Inputs
- line_id1
 - The ID of the first free line.
 - line_id2
 - The ID of the second free line.
 - smooth
 - A flag that determines whether the lines should be combined with a straight line segment (0) or a smooth line segment (1) if the end points of the lines are not coincident.
 
Example
To combine lines 10 and 20 with a smooth segment:
*linecombine 10 20 1
    Errors
if { [ catch {command_name...} ] } {
   # Handle error
}