This is an automated email from the ASF dual-hosted git repository. mattjuntunen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-geometry.git
commit b95ddb5dd40116eaa37d77929af288673e54bf0d Author: XenoAmess <[email protected]> AuthorDate: Sat Jul 4 01:05:19 2020 +0800 fix length-too-long --- .../org/apache/commons/geometry/euclidean/threed/RegionBSPTree3D.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/RegionBSPTree3D.java b/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/RegionBSPTree3D.java index 122b225..2f1f9c2 100644 --- a/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/RegionBSPTree3D.java +++ b/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/RegionBSPTree3D.java @@ -586,7 +586,8 @@ public final class RegionBSPTree3D extends AbstractRegionBSPTree<Vector3D, Regio this.firstOnly = firstOnly; } - /** Get the first {@link org.apache.commons.geometry.euclidean.twod.LinecastPoint2D} resulting from the linecast operation. + /** Get the first {@link org.apache.commons.geometry.euclidean.twod.LinecastPoint2D} + * resulting from the linecast operation. * @return the first linecast result point */ public LinecastPoint3D getFirstResult() {
