Notifications
Clear all

[Closed] select all the objects in my circle


Click to enlarge the image

Hello,
I would like to know if it is possible to select only the objects which are inside my circle. Thank you

Cyrill

2 Replies

hi, you can try this:

select (for obj in objects where (intersects MyCtrl obj) collect obj)

It works very well for your picture. However, it works off of the bounding box of your circle, so if you rotate it 45 degrees, you will select too many boxes. But maybe this is a good start for you?

good! Thank you msmith81!!