You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2014/12/15 17:06:49 UTC

[math] Javadoc

Repository: commons-math
Updated Branches:
  refs/heads/master 92a027bc7 -> 59fe593a4


Javadoc


Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/59fe593a
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/59fe593a
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/59fe593a

Branch: refs/heads/master
Commit: 59fe593a42bc2da17a58e396afe6d3aa4f99c53d
Parents: 92a027b
Author: Gilles <er...@apache.org>
Authored: Mon Dec 15 17:06:20 2014 +0100
Committer: Gilles <er...@apache.org>
Committed: Mon Dec 15 17:06:20 2014 +0100

----------------------------------------------------------------------
 .../commons/math3/geometry/partitioning/AbstractRegion.java       | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/59fe593a/src/main/java/org/apache/commons/math3/geometry/partitioning/AbstractRegion.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/math3/geometry/partitioning/AbstractRegion.java b/src/main/java/org/apache/commons/math3/geometry/partitioning/AbstractRegion.java
index fd3dcc7..6928331 100644
--- a/src/main/java/org/apache/commons/math3/geometry/partitioning/AbstractRegion.java
+++ b/src/main/java/org/apache/commons/math3/geometry/partitioning/AbstractRegion.java
@@ -305,7 +305,8 @@ public abstract class AbstractRegion<S extends Space, T extends Space> implement
     /** Check a point with respect to the region.
      * @param point point to check
      * @return a code representing the point status: either {@link
-     * Location#INSIDE}, {@link Location#OUTSIDE} or {@link Location#BOUNDARY}
+     * Region.Location#INSIDE}, {@link Region.Location#OUTSIDE} or
+     * {@link Region.Location#BOUNDARY}
      */
     public Location checkPoint(final Vector<S> point) {
         return checkPoint((Point<S>) point);