Package org.orekit.utils
Interface WaypointPVBuilder.InterpolationFactory
-
- Enclosing class:
- WaypointPVBuilder
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface WaypointPVBuilder.InterpolationFactory
Factory interface, creating thePVCoordinatesProvider
instances between the provided waypoints.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PVCoordinatesProvider
create(AbsoluteDate date1, GeodeticPoint point1, AbsoluteDate date2, GeodeticPoint point2, OneAxisEllipsoid body)
Create aPVCoordinatesProvider
which interpolates between the provided waypoints.
-
-
-
Method Detail
-
create
PVCoordinatesProvider create(AbsoluteDate date1, GeodeticPoint point1, AbsoluteDate date2, GeodeticPoint point2, OneAxisEllipsoid body)
Create aPVCoordinatesProvider
which interpolates between the provided waypoints.- Parameters:
date1
- the first waypoint's datepoint1
- the first waypoint's locationdate2
- the second waypoint's datepoint2
- the second waypoint's locationbody
- the body on which the waypoints are defined- Returns:
- a
PVCoordinatesProvider
providing the locations at times between the waypoints.
-
-