JAL-1767 refactorings to enable faithful restore of PCA from project
[jalview.git] / src / jalview / datamodel / Point.java
index af6a634..f1de8a1 100644 (file)
@@ -17,4 +17,13 @@ public final class Point
     y = yVal;
     z = zVal;
   }
+
+  /**
+   * toString for convenience of inspection in debugging or logging
+   */
+  @Override
+  public String toString()
+  {
+    return String.format("[%f, %f, %f]", x, y, z);
+  }
 }