MATH-1284: Fix javadoc references

This commit is contained in:
Ray DeCampo 2017-05-06 11:03:18 -04:00
parent 05edf06360
commit c9e49faac2
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ public abstract class Vector1D implements Vector<Euclidean1D> {
/** Get the abscissa of the vector.
* @return abscissa of the vector
* @see #Vector1D(double)
* @see #Cartesian1D(double)
*/
public abstract double getX();

View File

@ -25,13 +25,13 @@ public abstract class Vector2D implements Vector<Euclidean2D> {
/** Get the abscissa of the vector.
* @return abscissa of the vector
* @see #Vector2D(double, double)
* @see #Cartesian2D(double, double)
*/
public abstract double getX();
/** Get the ordinate of the vector.
* @return ordinate of the vector
* @see #Vector2D(double, double)
* @see #Cartesian2D(double, double)
*/
public abstract double getY();