alice.kareltherobot
Class Direction

java.lang.Object
  extended by alice.kareltherobot.Direction

public abstract class Direction
extends java.lang.Object

Directions are responsible for knowing how a robot should turn and how it should move.

Version:
1.0 (Alice) February 2010
Author:
Joseph Bergin

Field Summary
static Direction EAST
          The east direction in the robot world
static Direction NORTH
          The north direction in the robot world (along the x axis of Alice).
static Direction SOUTH
          The south direction in the robot world.
static Direction WEST
          The west direction in the robot world (along the z axis of Alice)
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NORTH

public static final Direction NORTH
The north direction in the robot world (along the x axis of Alice).


SOUTH

public static final Direction SOUTH
The south direction in the robot world.


WEST

public static final Direction WEST
The west direction in the robot world (along the z axis of Alice)


EAST

public static final Direction EAST
The east direction in the robot world