int x = (mi.getX()/wide)*wide + wide/2;
int y = (mi.getY()/high)*high + high/2;
The values in parentheses give the index of the cell. Multiplying by the cell dimension puts you at the beginning of the cell. Then, adding the halved portion puts you at the center of the cell -- where the actor is to be placed.