cleanups + comments

This commit is contained in:
Hannes Janetzek
2013-02-06 11:06:47 +01:00
parent f2b7a9fdf8
commit fada95f380
11 changed files with 127 additions and 219 deletions

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;
}
}