I derped. Oh well. #122

Merged
StevenRS11 merged 18 commits from mazes into master 2014-01-04 07:15:16 +00:00
Showing only changes of commit 82da53b992 - Show all commits

View File

@@ -61,10 +61,12 @@ public class Point3D implements Serializable {
{ {
return new Point3D(x, y, z); return new Point3D(x, y, z);
} }
public int[] toIntArray() public int[] toIntArray()
{ {
return new int[]{x,y,z}; return new int[]{x,y,z};
} }
public boolean equals(Point3D other) public boolean equals(Point3D other)
{ {
if (other == null) if (other == null)