I place objects on random positions on the screen (canvas) :
public float X=Rnd.nextInt((MainGamePanel.width - 60) - 20) + 20;
public float Y=Rnd.nextInt((MainGamePanel.height - 30) - 30) + 30;
This works fine. Now; What if I want to avoid placing objects over (40,50) - (60,80).. for instance, because I have a button there, I don't want the button to be covered with visible objects.
Ofcourse, I could implement a "checkposition" routine, that re-randomizes if the object-position is placed somewhere within the button-area. But is this the best (cleanest, neatest, fastest) solution? Thanks for your thoughts!