From 7fc6fc06bf5b1e6c3a07640cfb2ac7456e030e06 Mon Sep 17 00:00:00 2001 From: pacien Date: Thu, 11 Jan 2018 21:27:07 +0100 Subject: Unify width/height order Signed-off-by: pacien --- src/main/java/fr/umlv/java/wallj/board/Board.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/fr') diff --git a/src/main/java/fr/umlv/java/wallj/board/Board.java b/src/main/java/fr/umlv/java/wallj/board/Board.java index a4ac421..c846fd3 100644 --- a/src/main/java/fr/umlv/java/wallj/board/Board.java +++ b/src/main/java/fr/umlv/java/wallj/board/Board.java @@ -21,7 +21,7 @@ public final class Board { * @param height height in tiles */ public Builder(int width, int height) { - this.map = new BlockType[width][height]; + map = new BlockType[height][width]; } /** @@ -30,7 +30,7 @@ public final class Board { * @return the Builder */ public Builder setBlockTypeAt(TileVec2 pos, BlockType type) { - map[pos.getCol()][pos.getRow()] = type; + map[pos.getRow()][pos.getCol()] = type; return this; } @@ -55,7 +55,7 @@ public final class Board { * @return the element at the given position */ public BlockType getBlockTypeAt(TileVec2 pos) { - return map[pos.getCol()][pos.getRow()]; + return map[pos.getRow()][pos.getCol()]; } /** -- cgit v1.2.3