If my intention is to select only the objects that do not contain the words _ctrl or _ctrl_root, how should I do it?
I only want to select Point_001,Point_002,Point_003,etc…
Select objects
darwin
#1
PolyTools3D
#2
(
sel = for obj in objects collect
(
match = matchpattern obj.name pattern:"*_ctrl*" ignorecase:true
if not match then obj else dontcollect
)
select sel
)

