diff --git a/src/main/java/org/apache/commons/math4/geometry/partitioning/Embedding.java b/src/main/java/org/apache/commons/math4/geometry/partitioning/Embedding.java index 9e78d908e..ef3cadf3d 100644 --- a/src/main/java/org/apache/commons/math4/geometry/partitioning/Embedding.java +++ b/src/main/java/org/apache/commons/math4/geometry/partitioning/Embedding.java @@ -26,9 +26,9 @@ import org.apache.commons.math4.geometry.Space; * as {@link Hyperplane hyperplanes}. This interface can be used regardless * of the dimensions differences. As an example, {@link * org.apache.commons.math4.geometry.euclidean.threed.Line Line} in 3D - * implements Embedding<{@link - * org.apache.commons.math4.geometry.euclidean.threed.Cartesian3D Cartesian3D}, {link - * org.apache.commons.math4.geometry.euclidean.oned.Cartesian1D Cartesian1D}, i.e. it + * implements Embedding<{@link + * org.apache.commons.math4.geometry.euclidean.threed.Cartesian3D Cartesian3D}, {@link + * org.apache.commons.math4.geometry.euclidean.oned.Cartesian1D Cartesian1D}>, i.e. it * maps directly dimensions 3 and 1.
*In the 3D euclidean space, hyperplanes are 2D planes, and the 1D
diff --git a/src/main/java/org/apache/commons/math4/geometry/spherical/twod/SphericalPolygonsSet.java b/src/main/java/org/apache/commons/math4/geometry/spherical/twod/SphericalPolygonsSet.java
index 83c693645..e6f94f29c 100644
--- a/src/main/java/org/apache/commons/math4/geometry/spherical/twod/SphericalPolygonsSet.java
+++ b/src/main/java/org/apache/commons/math4/geometry/spherical/twod/SphericalPolygonsSet.java
@@ -421,7 +421,7 @@ public class SphericalPolygonsSet extends AbstractRegion
* This method is intended as a first test to quickly identify points
* that are guaranteed to be outside of the region, hence performing a full
- * {@link #checkPoint(org.apache.commons.math4.geometry.Vector) checkPoint}
+ * {@link #checkPoint(org.apache.commons.math4.geometry.Point) checkPoint}
* only if the point status remains undecided after the quick check. It is
* is therefore mostly useful to speed up computation for small polygons with
* complex shapes (say a country boundary on Earth), as the spherical cap will
@@ -429,7 +429,7 @@ public class SphericalPolygonsSet extends AbstractRegion
* In the special cases of empty or whole sphere polygons, special
* spherical caps are returned, with angular radius set to negative
+ *
* {@code
* // compute region, plus an enclosing spherical cap
* SphericalPolygonsSet complexShape = ...;
* EnclosingBall
+ * }