From 3753299b0c98848823218aea85c6ad6f2fa94450 Mon Sep 17 00:00:00 2001 From: Kyle Smith Date: Mon, 8 Feb 2021 16:37:43 -0500 Subject: [PATCH 1/2] changed square size --- .../src/edu/ycp/cs320/movethesquare/ui/GameView.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java b/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java index 674d86b..1f09914 100644 --- a/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java +++ b/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java @@ -84,8 +84,9 @@ public void run() { Square square = new Square(); square.setX(300.0); square.setY(220.0); - square.setWidth(40.0); - square.setHeight(40.0); + //ksmith126 changed the block size + square.setWidth(80.0); + square.setHeight(80.0); model.setSquare(square); GameController controller = new GameController(); From 415c13be7007cab6cdeda93fb2390392c482d908 Mon Sep 17 00:00:00 2001 From: Kyle Smith Date: Mon, 8 Feb 2021 17:13:20 -0500 Subject: [PATCH 2/2] changed size again --- MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java b/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java index 1f09914..6ac10c1 100644 --- a/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java +++ b/MoveTheSquare/src/edu/ycp/cs320/movethesquare/ui/GameView.java @@ -85,7 +85,7 @@ public void run() { square.setX(300.0); square.setY(220.0); //ksmith126 changed the block size - square.setWidth(80.0); + square.setWidth(70.0); square.setHeight(80.0); model.setSquare(square);