Code cleanup and formatting.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / geometry / Point2D.java
index 1cfd39c..d650a9e 100755 (executable)
@@ -34,7 +34,7 @@ public class Point2D implements Cloneable {
         return this;
     }
 
-    public boolean isZero(){
+    public boolean isZero() {
         return (x == 0) && (y == 0);
     }