set vols {}
set areas {}
*createmark comps 1 all
foreach a $areas b $vols {
if { 90000 <= $a && $a <= 100000 } {
hm_createmark {#what input should I give}
*maskentitymark {#comps/solids} 1 0
}
if { 100000 <= $b && $b <=120000 } {
hm_createmark {#what input should I give}
*maskentitymark {#comps/solids} 1 0
}
}
I have volume and areas Values of each comps in set vols and in set areas respectively. Now with some range criteria I want to filter values and at same time I want to hide the respected (if comp1 have area 99000 then that comps/solid should be get selected) entity. How can I proceed further to complete this syntax. Please guide...