*GetLatitudeLineHandles

Finds the latitude lines handles of the selected latitude lines and shows these handles in HyperMesh.

Syntax

*GetLatitudeLineHandles entity_type1 mark_id1 entity_type2 mark_id2 selection_type

Type

HyperMesh Tcl Modify Command

Description

This command finds and shows in HyperMesh the handles of latitude lines stored into mark_id1. Valid entity_type1 value for latitude lines is LINES, and valid selection_type value is 1. If you want to see the handles of a latitude lines group, you need to select two ribs that are stored into mark_id2. Valid entity_type2 value for ribs is LINES and valid selection_type value is 2.

Inputs

entity_type1
Entity type LINES.
mark_id1
Mark ID. It can be 1 or 2.
entity_type2
Entity type LINES.
mark_id2
Mark ID. It can be 1 or 2.
selection_type
Integer value.
  • 1 - For single latitude lines selection.
  • 2 - For group latitude lines selection.

Example

To see the handles of the latitude lines 1418, 1419, and 1550:
*createmark lines 1 1418 1419 1550
*createmark lines 2
*GetLatitudeLineHandles lines 1 lines 2 1 
To see the handles of the all latitude lines attached to 1418 enclose the ribs 1344 and 1335:
*createmark lines 1 1418
*createmark lines 2 1344 1335
*GetLatitudeLineHandles lines 1 lines 2 2 

Errors

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