Mark multiple Entities
Girish2121
Altair Community Member
Hello all,
I am trying to delete multiple surfaces using mark option.
Following is the code snippet :
set SurfsList {1 2 3 4 5 6 }
*createmark surfaces 1 $SurfsList
*deletemark surfaces 1
But only the first entity in the list is getting marked . The other elements are not getting marked.
Are there any work around or alternate options ?
Thanks
Girish
0
Answers
-
set SurfsList {1 2 3 4 5 6 }
eval *createmark surfaces 1 $SurfsList
*deletemark surfaces 1
Try this code
0 -
Hi Pandurang,
eval , worked perfectly ...
Thank you !
0