diff options
author | Camil Staps | 2015-02-26 16:59:03 +0100 |
---|---|---|
committer | Camil Staps | 2015-02-26 16:59:03 +0100 |
commit | d3f1a43a9463c4c8be06c8074869b3b7fabc213d (patch) | |
tree | 25b2ac3fc79cf1ecc9d683cf555168f4a7d5e11d /Week4/src/oo15loipe/Punt.java | |
parent | x (diff) |
Added base framework week4
Diffstat (limited to 'Week4/src/oo15loipe/Punt.java')
-rw-r--r-- | Week4/src/oo15loipe/Punt.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Week4/src/oo15loipe/Punt.java b/Week4/src/oo15loipe/Punt.java index 1939c45..2c94f1f 100644 --- a/Week4/src/oo15loipe/Punt.java +++ b/Week4/src/oo15loipe/Punt.java @@ -70,8 +70,4 @@ public class Punt { public String toString () { return "(" + x + "," + y + ")"; } - - public Punt add(Punt plus) { - return new Punt(x + plus.getX(), y + plus.getY()); - } } |