Tcl Command Find Attached elements to an element
sanket_patil
Altair Community Member
Hello All,
I want to select attached elements to a particular element. What is tcl command for this selection?
Regards,
Sanket
0
Answers
-
you use appendmark
0 -
0
-
Try something like this
set elemID 1;
*createmark elems 1 $elemID;
*appendmark elems 1 'by adjacent'
set lst_adjacent_elems [hm_getmark elems 1]0 -
@sandeepballiwarThanks for the help.
What to do if i want to select all elements attached to element as above commands are giving adjacent elements only..should i need to use for loop here?
Regards,
Sanket
0 -
try to use *appendmark elems 1 'by attached'
0 -
0