projection matrix

This commit is contained in:
2020-05-26 12:04:13 -04:00
parent 7288a7ee99
commit 1285842b55
12 changed files with 233 additions and 46 deletions
@@ -15,6 +15,12 @@ public class Vector2f {
this.y = y;
}
public void add(float x, float y) {
this.x += x;
this.y += y;
}
public float getX() {
return x;
}