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 thePVCoordinatesProviderinstances between the provided waypoints.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PVCoordinatesProvidercreate(AbsoluteDate date1, GeodeticPoint point1, AbsoluteDate date2, GeodeticPoint point2, OneAxisEllipsoid body)Create aPVCoordinatesProviderwhich interpolates between the provided waypoints.
-
-
-
Method Detail
-
create
PVCoordinatesProvider create(AbsoluteDate date1, GeodeticPoint point1, AbsoluteDate date2, GeodeticPoint point2, OneAxisEllipsoid body)
Create aPVCoordinatesProviderwhich 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
PVCoordinatesProviderproviding the locations at times between the waypoints.
-
-