Mark multiple Entities

User: "Girish2121"
Altair Community Member
Updated by Girish2121

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

Find more posts tagged with

Sort by:
1 - 2 of 21
    User: "Pandurang"
    Altair Community Member
    Updated by Pandurang

    set  SurfsList  {1 2 3 4 5 6 }

    eval *createmark surfaces 1 $SurfsList

    *deletemark surfaces 1

     

     

    Try this code

    User: "Girish2121"
    Altair Community Member
    OP
    Updated by Girish2121

    Hi Pandurang,

     

    eval , worked perfectly ...

    Thank you !