| ShuttleAnimator.java |
package lectures.animation.threads_commands;
import util.annotations.WebDocuments;
import lectures.composite.objects_shapes.PlottedShuttle;
import bus.uigen.OEFrame;
@WebDocuments({"Lectures/AnimationThreadsCommands.pptx", "Lectures/AnimationThreadsCommands.pdf", "Videos/AnimationThreadsCommands.avi"})
public interface ShuttleAnimator {
public void animateFromOrigin(PlottedShuttle shuttle, int animationStep, int animationPauseTime);
// public void animateFromOrigin(PlottedShuttle shuttle, int animationStep, int animationPauseTime, OEFrame frame);
}