35 lines
No EOL
399 B
Java
35 lines
No EOL
399 B
Java
package math;
|
|
|
|
|
|
public class Vector2f {
|
|
|
|
public float x,y;
|
|
|
|
public Vector2f(float x,float y){
|
|
this.x = x;
|
|
this.y = y;
|
|
}
|
|
|
|
public float getX() {
|
|
return x;
|
|
}
|
|
|
|
public void setX(float x) {
|
|
this.x = x;
|
|
}
|
|
|
|
public float getY() {
|
|
return y;
|
|
}
|
|
|
|
public void setY(float y) {
|
|
this.y = y;
|
|
}
|
|
|
|
public Vector2f copy() {
|
|
return new Vector2f(x,y);
|
|
}
|
|
|
|
|
|
|
|
} |