File size: 362 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import java.awt.geom.Point2D;
public class Direction {
static Point2D UP() {
return new Point2D.Double(0, -1);
}
static Point2D LEFT() {
return new Point2D.Double(-1, 0);
}
static Point2D DOWN() {
return new Point2D.Double(0, 1);
}
static Point2D RIGHT() {
return new Point2D.Double(1, 0);
}
}
|