trying to add textures and still failing

This commit is contained in:
2020-05-25 12:55:20 -04:00
parent ebf26f18d8
commit 5fc63b6c73
17 changed files with 882 additions and 627 deletions
+23 -23
View File
@@ -1,33 +1,33 @@
package org.hl.engine.math.lalg;
public class Vector2f {
private float x;
private float y;
private float x;
private float y;
// Just a vector if you know what I mean
public Vector2f (float x, float y) {
this.x = x;
this.y = y;
}
// Just a vector if you know what I mean
public Vector2f (float x, float y) {
this.x = x;
this.y = y;
}
public void setVector(float x, float y) {
this.x = x;
this.y = y;
}
public void setVector(float x, float y) {
this.x = x;
this.y = y;
}
public float getX() {
return x;
}
public float getX() {
return x;
}
public void setX(float x) {
this.x = x;
}
public void setX(float x) {
this.x = x;
}
public float getY() {
return y;
}
public float getY() {
return y;
}
public void setY(float y) {
this.y = y;
}
public void setY(float y) {
this.y = y;
}
}