Fixed javadoc.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1178172 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2011-10-02 10:11:43 +00:00
parent 166cdbb4e2
commit cea840d31b
4 changed files with 5 additions and 7 deletions

View File

@ -113,7 +113,7 @@ public class Line implements Embedding<Euclidean3D, Euclidean1D> {
}
/** Get one point from the line.
* @param point desired abscissa for the point
* @param abscissa desired abscissa for the point
* @return one point belonging to the line, at specified abscissa
*/
public Vector3D pointAt(final double abscissa) {

View File

@ -22,7 +22,6 @@ import java.util.List;
import org.apache.commons.math.geometry.euclidean.oned.Interval;
import org.apache.commons.math.geometry.euclidean.oned.IntervalsSet;
import org.apache.commons.math.geometry.euclidean.oned.Vector1D;
import org.apache.commons.math.geometry.partitioning.Hyperplane;
import org.apache.commons.math.geometry.partitioning.Region.Location;
/** This class represents a subset of a {@link Line}.
@ -92,7 +91,7 @@ public class SubLine {
/** Get the intersection of the instance and another sub-line.
* <p>
* This method is related to the {@link Line#intersection(Hyperplane)
* This method is related to the {@link Line#intersection(Line)
* intersection} method in the {@link Line Line} class, but in addition
* to compute the point along infinite lines, it also checks the point
* lies on both sub-line ranges.

View File

@ -95,7 +95,7 @@ public class SubLine extends AbstractSubHyperplane<Euclidean2D, Euclidean1D> {
/** Get the intersection of the instance and another sub-line.
* <p>
* This method is related to the {@link Line#intersection(Hyperplane)
* This method is related to the {@link Line#intersection(Line)
* intersection} method in the {@link Line Line} class, but in addition
* to compute the point along infinite lines, it also checks the point
* lies on both sub-line ranges.

View File

@ -48,9 +48,8 @@ public class ArrayFieldVector<T extends FieldElement<T>> implements FieldVector<
* Zero-length vectors may be used to initialized construction of vectors
* by data gathering. We start with zero-length and use either the {@link
* #ArrayFieldVector(ArrayFieldVector, ArrayFieldVector)} constructor
* or one of the {@code append} methods ({@link #append(FieldElement[])},
* {@link #add(FieldVector)}, {@link #append(ArrayFieldVector)}) to gather data
* into this vector.
* or one of the {@code append} methods ({@link #add(FieldVector)} or
* {@link #append(ArrayFieldVector)}) to gather data into this vector.
*
* @param field field to which the elements belong
*/