You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/01/13 19:47:49 UTC

[commons-geometry] branch master updated: Javadoc fixes

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-geometry.git


The following commit(s) were added to refs/heads/master by this push:
     new 5197668b Javadoc fixes
5197668b is described below

commit 5197668b6db501af1c6025da72d8541794b30903
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Jan 13 14:47:45 2023 -0500

    Javadoc fixes
---
 .../geometry/euclidean/threed/EmbeddedAreaPlaneConvexSubset.java    | 2 +-
 .../geometry/euclidean/threed/rotation/QuaternionRotation.java      | 6 +++---
 .../commons/geometry/io/euclidean/threed/stl/TextStlWriter.java     | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/EmbeddedAreaPlaneConvexSubset.java b/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/EmbeddedAreaPlaneConvexSubset.java
index 2a11ce25..4ea115ec 100644
--- a/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/EmbeddedAreaPlaneConvexSubset.java
+++ b/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/EmbeddedAreaPlaneConvexSubset.java
@@ -36,7 +36,7 @@ final class EmbeddedAreaPlaneConvexSubset extends AbstractEmbeddedRegionPlaneSub
     private final ConvexArea area;
 
     /** Create a new instance from its component parts.
-     * @param plane plane the the convex area is embedded in
+     * @param plane plane the convex area is embedded in
      * @param area the embedded convex area
      */
     EmbeddedAreaPlaneConvexSubset(final EmbeddingPlane plane, final ConvexArea area) {
diff --git a/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/rotation/QuaternionRotation.java b/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/rotation/QuaternionRotation.java
index 5f800164..67c91c05 100644
--- a/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/rotation/QuaternionRotation.java
+++ b/commons-geometry-euclidean/src/main/java/org/apache/commons/geometry/euclidean/threed/rotation/QuaternionRotation.java
@@ -58,7 +58,7 @@ public final class QuaternionRotation implements Rotation3D {
 
     /** Simple constructor. The given quaternion is converted to positive polar form.
      * @param quat quaternion instance
-     * @throws IllegalStateException if the the norm of the given components is zero,
+     * @throws IllegalStateException if the norm of the given components is zero,
      *                              NaN, or infinite
      */
     private QuaternionRotation(final Quaternion quat) {
@@ -523,7 +523,7 @@ public final class QuaternionRotation implements Rotation3D {
      *
      * @param quat the quaternion to use for the rotation
      * @return a new instance built from the given quaternion.
-     * @throws IllegalStateException if the the norm of the given components is zero,
+     * @throws IllegalStateException if the norm of the given components is zero,
      *                              NaN, or infinite
      * @see Quaternion#normalize()
      * @see Quaternion#positivePolarForm()
@@ -541,7 +541,7 @@ public final class QuaternionRotation implements Rotation3D {
      * @param y second quaternion vectorial component
      * @param z third quaternion vectorial component
      * @return a new instance containing the normalized quaterion components
-     * @throws IllegalStateException if the the norm of the given components is zero,
+     * @throws IllegalStateException if the norm of the given components is zero,
      *                              NaN, or infinite
      * @see Quaternion#normalize()
      * @see Quaternion#positivePolarForm()
diff --git a/commons-geometry-io-euclidean/src/main/java/org/apache/commons/geometry/io/euclidean/threed/stl/TextStlWriter.java b/commons-geometry-io-euclidean/src/main/java/org/apache/commons/geometry/io/euclidean/threed/stl/TextStlWriter.java
index 6368a5e0..5a48cd1c 100644
--- a/commons-geometry-io-euclidean/src/main/java/org/apache/commons/geometry/io/euclidean/threed/stl/TextStlWriter.java
+++ b/commons-geometry-io-euclidean/src/main/java/org/apache/commons/geometry/io/euclidean/threed/stl/TextStlWriter.java
@@ -113,7 +113,7 @@ public class TextStlWriter extends AbstractTextFormatWriter {
     }
 
     /** Write the facet defined by the given vertices and normal to the output as triangles.
-     * If the the given list of vertices contains more than 3 vertices, it is converted to
+     * If the given list of vertices contains more than 3 vertices, it is converted to
      * triangles using a triangle fan. Callers are responsible for ensuring that the given
      * vertices represent a valid convex polygon.
      *