com.swfm.mica.animators
Interface MiiAnimatable

All Known Subinterfaces:
MiiAnimator
All Known Implementing Classes:
MiAnimatingWorker, MiAnimator, MiPanAndZoomAnimator, MiPartAnimator

public interface MiiAnimatable

Version:
%I% %G%
Author:
Michael L. Davis

Method Summary
 void animate(double startOfStep, double endOfStep)
          Animates for the given time slice.
 void end()
          Clean up after animation.
 void start()
          Initialize before animation.
 

Method Detail

start

public void start()
Initialize before animation.


animate

public void animate(double startOfStep,
                    double endOfStep)
Animates for the given time slice. The beginning and end are normalized (0.0 to 1.0), 0.0 being the start of the animation and 1.0 the end.

Parameters:
startOfStep - the beginning of the time slice
endOfStep - the end of the time slice

end

public void end()
Clean up after animation.