All pastes #2059627 Raw Edit

Miscellany

public text v1 · immutable
#2059627 ·published 2011-05-15 05:07 UTC
rendered paste body
point getHorizontalNeighbour(int row, int col) {

   point neighbour;

   if (col % 2 == 0) {
      
      if (row % 2 == 0) {
         neighbour.row = row - 1;
         neighbour.col = col + 1;
      }
      else {
         neighbour.row = row - 1;
         neighbour.col = col - 1;
      }

   }

   else {
      
      if (row % 2 == 0) {
         neighbour.row = row + 1;
         neighbour.col = col + 1;
      
      }
      else {
         neighbour.row = row + 1;
         neighbour.col = col - 1;
      
      }

   }
   return neighbour;  
}