/** * Author: Josiah Yoder et al. * Class: SE2811-011 * Date: 12/9/13 8:27 AM * Lesson: Week 2, Day 2 */ package example2_2; import java.awt.Point; public class CircularSwimming implements SwimBehavior { public Point swim(Point topLeft) { System.out.println("Circular Swimming"); // TODO: Actually move in circles return topLeft; } }