sub_arctic.anim
Interface simple_animatable

All Known Implementing Classes:
drag_icon, FadingIcon

public abstract interface simple_animatable

This is a simpler version of the the animatable interface (with fewer parameters).


Method Summary
 void end_transition(java.lang.Object start_obj, java.lang.Object end_obj)
          This function is called when a transition ends.
 void start_transition(java.lang.Object start_obj)
          This function gets called when the transition starts.
 void transition_step(java.lang.Object start_obj, java.lang.Object end_obj)
          This function gets called as the transition progresses.
 

Method Detail

start_transition

public void start_transition(java.lang.Object start_obj)
This function gets called when the transition starts.

Parameters:
Object - start_obj the start time mapped through the trajectory

transition_step

public void transition_step(java.lang.Object start_obj,
                            java.lang.Object end_obj)
This function gets called as the transition progresses. You receive a time interval mapped through the pacing and trajectory functions.

Parameters:
Object - start_obj the start time mapped through the trajectory
Object - end_obj the end time mapped through the trajectory

end_transition

public void end_transition(java.lang.Object start_obj,
                           java.lang.Object end_obj)
This function is called when a transition ends. You receive a time interval mapped through the pacing and trajectory functions.

Parameters:
Object - start_obj the start time mapped through the trajectory
Object - end_obj the end time mapped through the trajectory