Uses of Class
net.mazewar.Point

Packages that use Point
net.mazewar   
 

Uses of Point in net.mazewar
 

Subclasses of Point in net.mazewar
 class DirectedPoint
          An integral representation of a point in two dimensional space, with direction.
 

Methods in net.mazewar that return Point
 Point MazeImpl.getClientPoint(Client client)
           
abstract  Point Maze.getClientPoint(Client client)
          Find out where a specified Client is located in the Maze.
 Point Mazewar.getLoc()
           
 Point Client.getPoint()
          Obtain the location of this Client.
 Point DirectedPoint.getPoint()
           
 Point MazeImpl.getSize()
           
abstract  Point Maze.getSize()
          Obtain a Point describing the size of the Maze.
 

Methods in net.mazewar with parameters of type Point
 boolean MazeImpl.checkBounds(Point point)
           
abstract  boolean Maze.checkBounds(Point point)
          Check whether a Point is within the bounds of the Maze.
 Cell MazeImpl.getCell(Point point)
           
abstract  Cell Maze.getCell(Point point)
          Obtain the Cell corresponding to a given Point in the Maze.
 

Constructors in net.mazewar with parameters of type Point
DirectedPoint(Point point, Direction direction)
          Create a DirectedPoint from a Point and a Direction.
MazeImpl(Point point, long seed, java.util.Vector peers)
          Create a Maze.
Point(Point point)
          Create a new Point from another Point.