cleanups + comments

This commit is contained in:
Hannes Janetzek
2013-10-09 01:55:52 +02:00
parent f2b7a9fdf8
commit fada95f380
11 changed files with 126 additions and 218 deletions
+8 -1
View File
@@ -21,11 +21,18 @@ public class Point {
public float x;
public float y;
public Point() {
}
Point(float x, float y) {
this.x = x;
this.y = y;
}
Point() {
public void set(float x, float y) {
this.x = x;
this.y = y;
}
}