Uses of Interface
gov.nasa.worldwind.animation.Interpolator
-
Packages that use Interpolator Package Description gov.nasa.worldwind.animation gov.nasa.worldwind.view.firstperson gov.nasa.worldwind.view.orbit gov.nasa.worldwindx.examples.kml Examples of importing and exporting files in the Keyhole Markup Language (KML). -
-
Uses of Interpolator in gov.nasa.worldwind.animation
Classes in gov.nasa.worldwind.animation that implement Interpolator Modifier and Type Class Description class
ScheduledInterpolator
class
SmoothInterpolator
Fields in gov.nasa.worldwind.animation declared as Interpolator Modifier and Type Field Description protected Interpolator
BasicAnimator. interpolator
Used to drive the animators next value based on the interpolant returned by theInterpolator
's next interpolantConstructors in gov.nasa.worldwind.animation with parameters of type Interpolator Constructor Description AngleAnimator(Interpolator interpolator, Angle begin, Angle end, PropertyAccessor.AngleAccessor propertyAccessor)
Construct an AngleAnimatorBasicAnimator(Interpolator interpolator)
Constructs aBasicAnimator
.CompoundAnimator(Interpolator interpolator)
Construct a CompoundAnimator with the givenInterpolator
CompoundAnimator(Interpolator interpolator, Animator... animators)
Construct a CompoundAnimator with the givenInterpolator
, and the givenAnimator
s.DoubleAnimator(Interpolator interpolator, double begin, double end, PropertyAccessor.DoubleAccessor propertyAccessor)
PositionAnimator(Interpolator interpolator, Position begin, Position end, PropertyAccessor.PositionAccessor propertyAccessor)
-
Uses of Interpolator in gov.nasa.worldwind.view.firstperson
Constructors in gov.nasa.worldwind.view.firstperson with parameters of type Interpolator Constructor Description FlyToFlyViewAnimator(Interpolator interpolator, int altitudeMode, PositionAnimator eyePositionAnimator, DoubleAnimator elevationAnimator, AngleAnimator headingAnimator, AngleAnimator pitchAnimator, AngleAnimator rollAnimator)
OnSurfacePositionAnimator(Globe globe, Interpolator interpolator, Position begin, Position end, PropertyAccessor.PositionAccessor propertyAccessor, int altitudeMode)
-
Uses of Interpolator in gov.nasa.worldwind.view.orbit
Constructors in gov.nasa.worldwind.view.orbit with parameters of type Interpolator Constructor Description FlyToOrbitViewAnimator(OrbitView orbitView, Interpolator interpolator, int altitudeMode, PositionAnimator centerAnimator, DoubleAnimator zoomAnimator, AngleAnimator headingAnimator, AngleAnimator pitchAnimator, AngleAnimator rollAnimator)
OnSurfacePositionAnimator(Globe globe, Interpolator interpolator, Position begin, Position end, PropertyAccessor.PositionAccessor propertyAccessor, int altitudeMode)
-
Uses of Interpolator in gov.nasa.worldwindx.examples.kml
Constructors in gov.nasa.worldwindx.examples.kml with parameters of type Interpolator Constructor Description EyePositionAnimator(Interpolator interpolator, Position beginCenter, Position endCenter, Position endEyePosition, Vec4 forward, Angle pitch, PropertyAccessor.PositionAccessor propertyAccessor, int altitudeMode)
Create a new animator.FlyToLookAtAnimator(Interpolator interpolator, OrbitView targetView, Position lookAtPosition, int altitudeMode, PositionAnimator eyePositionAnimator, DoubleAnimator elevationAnimator, AngleAnimator headingAnimator, AngleAnimator pitchAnimator, AngleAnimator rollAnimator)
Create an animator to animate the view to look at a position.
-