Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Rugged
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Orekit
Rugged
Commits
a82ada1d
Commit
a82ada1d
authored
10 years ago
by
Luc Maisonobe
Browse files
Options
Downloads
Patches
Plain Diff
Fixed javadoc warnings.
parent
1af17c45
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/orekit/rugged/api/RuggedBuilder.java
+10
-4
10 additions, 4 deletions
src/main/java/org/orekit/rugged/api/RuggedBuilder.java
with
10 additions
and
4 deletions
src/main/java/org/orekit/rugged/api/RuggedBuilder.java
+
10
−
4
View file @
a82ada1d
...
@@ -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
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment