예제 #1
0
 public RowCol NeighborBR(RowCol cell) => new RowCol(Down(cell.Row), Right(cell.Col));
예제 #2
0
 public RowCol NeighborBL(RowCol cell) => new RowCol(Down(cell.Row), Left(cell.Col));
예제 #3
0
 public RowCol NeighborBB(RowCol cell) => new RowCol(Down(cell.Row), cell.Col);
예제 #4
0
 public RowCol NeighborRR(RowCol cell) => new RowCol(cell.Row, Right(cell.Col));
예제 #5
0
 public RowCol NeighborLL(RowCol cell) => new RowCol(cell.Row, Left(cell.Col));
예제 #6
0
 public RowCol NeighborTR(RowCol cell) => new RowCol(Up(cell.Row), Right(cell.Col));
예제 #7
0
 public RowCol NeighborTT(RowCol cell) => new RowCol(Up(cell.Row), cell.Col);
예제 #8
0
 public RowCol NeighborTL(RowCol cell) => new RowCol(Up(cell.Row), Left(cell.Col));