svenrathgeber commented on a change in pull request #31: Geometry 29 2 sven
URL: https://github.com/apache/commons-geometry/pull/31#discussion_r271839480
 
 

 ##########
 File path: 
commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/Plane.java
 ##########
 @@ -442,14 +593,51 @@ public double getOffset(final Vector3D point) {
         return point.dot(w) + originOffset;
     }
 
-    /** Check if the instance has the same orientation as another hyperplane.
+    /**
+     * Check if the instance has the same orientation as another hyperplane.
+     * 
      * @param other other hyperplane to check against the instance
-     * @return true if the instance and the other hyperplane have
-     * the same orientation
+     * @return true if the instance and the other hyperplane have the same
+     *         orientation
      */
     @Override
     public boolean sameOrientationAs(final Hyperplane<Vector3D> other) {
         return (((Plane) other).w).dot(w) > 0.0;
     }
 
+    /** {@inheritDoc} */
+    @Override
+    public String toString() {
+        return "Plane [originOffset=" + originOffset + ", projectedOrigin=" + 
projectedOrigin + ", u=" + u + ", v=" + v + ", w=" + w
+                + ", precision=" + precision + "]";
 
 Review comment:
   done

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to