can someone please help me with this code;
if(atWorldEdge())
{
turn(3);
}
why doesn't it work anymore?
/** * Test if we are close to one of the edges of the world. Return true is we are. */ public boolean atWorldEdge() { if(getX() < 10 || getX() > getWorld().getWidth() - 10) return true; if(getY() < 10 || getY() > getWorld().getHeight() - 10) return true; else return false; }