Mouse, RectContainsPoint

Hello,
I would like to know how to make each circle grow on its own when it enters the rectangle, and not all of them grow when the first circle enters as it happens now. callmenames-2020-04-22.vl (31.8 KB)

hey apache,
main issue with your patch was: you only had one RectContainsPoint, so you’d only know when the mouse is in the rect or not. if you want to know that for each circle individually you have to run that “contains” operation multiple times. this is what loops are for, see:
CirclesIntersectingRect.vl (17.2 KB)

Thank you very much Joreg, you solved my problem!!

1 Like

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.