Minor Change

Added blank lines to Point3D to space out functions. <_<
This commit is contained in:
SenseiKiwi 2013-12-26 15:29:42 -04:00
parent 820e72f17a
commit 82da53b992

View file

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