public LoadMapResponse(OccupancyGrid map, byte result)
 {
     this.map    = map;
     this.result = result;
 }
Exemple #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;
 }
Exemple #4
0
 public SetMapRequest()
 {
     this.map          = new OccupancyGrid();
     this.initial_pose = new Geometry.PoseWithCovarianceStamped();
 }
 public GetMapResult(OccupancyGrid map)
 {
     this.map = map;
 }
 public GetMapResult()
 {
     this.map = new OccupancyGrid();
 }
Exemple #7
0
 public GetMapResponse(OccupancyGrid map)
 {
     this.map = map;
 }
Exemple #8
0
 public GetMapResponse()
 {
     this.map = new OccupancyGrid();
 }