Skip to content
Snippets Groups Projects
Commit a82ada1d authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Fixed javadoc warnings.

parent 1af17c45
No related branches found
No related tags found
No related merge requests found
...@@ -461,6 +461,7 @@ public class RuggedBuilder { ...@@ -461,6 +461,7 @@ public class RuggedBuilder {
} }
/** Get the satellite position and velocity (m and m/s in inertial frame). /** Get the satellite position and velocity (m and m/s in inertial frame).
* @return satellite position and velocity (m and m/s in inertial frame)
* @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator)
*/ */
public List<TimeStampedPVCoordinates> getpositionsVelocities() { public List<TimeStampedPVCoordinates> getpositionsVelocities() {
...@@ -468,34 +469,39 @@ public class RuggedBuilder { ...@@ -468,34 +469,39 @@ public class RuggedBuilder {
} }
/** Get the number of points to use for position/velocity interpolation. /** Get the number of points to use for position/velocity interpolation.
* @return number of points to use for position/velocity interpolation
* @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator)
*/ */
public int getPVInterpolationNumber() { public int getPVInterpolationNumber() {
return pvNeighborsSize; return pvNeighborsSize;
} }
/** Get the Filter for derivatives from the sample to use in position/velocity interpolation. /** Get the filter for derivatives from the sample to use in position/velocity interpolation.
* @return filter for derivatives from the sample to use in position/velocity interpolation
* @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator)
*/ */
public CartesianDerivativesFilter getPVFilter() { public CartesianDerivativesFilter getPVFilter() {
return pvDerivatives; return pvDerivatives;
} }
/** Get the Satellite quaternions with respect to inertial frame. /** Get the satellite quaternions with respect to inertial frame.
* @return satellite quaternions with respect to inertial frame
* @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator)
*/ */
public List<TimeStampedAngularCoordinates> getQuaternions() { public List<TimeStampedAngularCoordinates> getQuaternions() {
return aSample; return aSample;
} }
/** Get the Number of points to use for attitude interpolation. /** Get the number of points to use for attitude interpolation.
* @return number of points to use for attitude interpolation
* @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator)
*/ */
public int getAInterpolationNumber() { public int getAInterpolationNumber() {
return aNeighborsSize; return aNeighborsSize;
} }
/** Get the Filter for derivatives from the sample to use in attitude interpolation. /** Get the filter for derivatives from the sample to use in attitude interpolation.
* @return filter for derivatives from the sample to use in attitude interpolation
* @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator) * @see #setTrajectory(double, int, CartesianDerivativesFilter, AngularDerivativesFilter, Propagator)
*/ */
public AngularDerivativesFilter getAFilter() { public AngularDerivativesFilter getAFilter() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment