public LoadMapResponse(OccupancyGrid map, byte result)
 {
     this.map    = map;
     this.result = result;
 }
Esempio n. 2
0
 public SetMapRequest(OccupancyGrid map, Geometry.PoseWithCovarianceStamped initial_pose)
 {
     this.map          = map;
     this.initial_pose = initial_pose;
 }
 public LoadMapResponse()
 {
     this.map    = new OccupancyGrid();
     this.result = 0;
 }
Esempio n. 4
0
 public SetMapRequest()
 {
     this.map          = new OccupancyGrid();
     this.initial_pose = new Geometry.PoseWithCovarianceStamped();
 }
Esempio n. 5
0
 public GetMapResult(OccupancyGrid map)
 {
     this.map = map;
 }
Esempio n. 6
0
 public GetMapResult()
 {
     this.map = new OccupancyGrid();
 }
Esempio n. 7
0
 public GetMapResponse(OccupancyGrid map)
 {
     this.map = map;
 }
Esempio n. 8
0
 public GetMapResponse()
 {
     this.map = new OccupancyGrid();
 }