public class AngleAnimator extends BasicAnimator
| Modifier and Type | Field and Description | 
|---|---|
| protected Angle | beginThe angle the animation begins at. | 
| protected Angle | endThe angle the animation ends at. | 
| protected PropertyAccessor.AngleAccessor | propertyAccessorThe @link gov.nasa.worldwind.util.PropertyAccessor used to modify
 the data value being animated. | 
interpolator| Constructor and Description | 
|---|
| AngleAnimator(Interpolator interpolator,
             Angle begin,
             Angle end,
             PropertyAccessor.AngleAccessor propertyAccessor)Construct an AngleAnimator | 
| Modifier and Type | Method and Description | 
|---|---|
| Angle | getBegin()Get the current  beginvalue. | 
| Angle | getEnd()Get the current  endvalue. | 
| PropertyAccessor.AngleAccessor | getPropertyAccessor()Get the  PropertyAccessorin use by this animation | 
| void | setBegin(Angle begin)Set the  beginvalue. | 
| void | setEnd(Angle end)Set the  endvalue. | 
| protected void | setImpl(double interpolant)Set the value being animated via the  PropertyAccessorusing the passed interpolant. | 
flagLastStateInvalid, hasNext, isLastStateValid, isStopOnInvalidState, next, set, setStopOnInvalidState, start, stopprotected Angle begin
protected Angle end
protected final PropertyAccessor.AngleAccessor propertyAccessor
public AngleAnimator(Interpolator interpolator, Angle begin, Angle end, PropertyAccessor.AngleAccessor propertyAccessor)
interpolator - the Interpolatorbegin - angle the animation begins atend - The angle the animation ends at.propertyAccessor - The PropertyAccessor used to modify
 the data value being animated.public PropertyAccessor.AngleAccessor getPropertyAccessor()
PropertyAccessor in use by this animationPropertyAccessor in use by this animationpublic void setBegin(Angle begin)
begin value.begin - the new begin value.protected void setImpl(double interpolant)
PropertyAccessor
 using the passed interpolant. This implementation just does a straight liner interpolation
 between the begin and end values.setImpl in class BasicAnimatorinterpolant - the interpolant used to generate the next value that will be set by the
 PropertyAccessor