Пример #1
0
 public Coordinate(SimpleCoordinate c)
 {
     x              = c.x;
     y              = c.y;
     type           = c.type;
     visited        = false;
     positionObject = null;
     Heuristic      = 0;
 }
 public Coordinate(int x, int y, MazeID id)
 {
     this.x              = x;
     this.y              = y;
     this.visited        = false;
     this.type           = id;
     this.positionObject = null;
     this.Heuristic      = 0;
 }
Пример #3
0
 public SimpleCoordinate(int xx, int yy, MazeID t)
 {
     x    = xx;
     y    = yy;
     type = t;
 }