#130 Use a panel to add entities to a mark in tcl in HyperMesh
To create a mark of elements in a panel:
1 2 |
*createmarkpanel elems 1 "Please select the elements" hm_getmark elems 1 |
To create a mark of elements in a panel using 2D faces as the default selection mode:
1 2 |
*createmarkpanel elems 1 "Please select the elements" 1 hm_getmark elems 1 |
To create a mark of elements in a panel using 2D faces as the default selection mode, only allowing 2D faces and 2D faces ext modes:
1 2 |
*createmarkpanel elems 1 "Please select the elements" 1 6 hm_getmark elems 1 |
*createmarkpanel entity_type mark_id message ?face_edge_mode? ?filter?
?face_edge_mode?
The default face/edge selection mode to use when entering the panel. This is valid only for nodes and elements. An invalid value defaults to 0, or is ignored for non-supported entity types.
0 – Standard entity selection
1 – 2D faces (elems) or faces (nodes)
2 – 2D faces ext (elems and nodes)
3 – Free edges (nodes only)
4 – Edges (nodes only)
5 – Loops (nodes only)
6 – Free edges ext (nodes only)
7 – Edges ext (nodes only)
Recent Comments