This commit is contained in:
Jesse Boyd 2017-03-18 03:04:11 +11:00
parent b435fbfb33
commit 26404fc9db
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ public class Vector2D {
public static final Vector2D UNIT_Z = new Vector2D(0, 1);
public static final Vector2D ONE = new Vector2D(1, 1);
private double x;
private double z;
public double x;
public double z;
/**
* Construct an instance.