Exemplo n.º 1
0
 public GetOctomapResponse(Octomap map)
 {
     this.map = map;
 }
Exemplo n.º 2
0
 public OctomapWithPose(Header header, Pose origin, Octomap octomap)
 {
     this.header  = header;
     this.origin  = origin;
     this.octomap = octomap;
 }
Exemplo n.º 3
0
 public GetOctomapResponse()
 {
     this.map = new Octomap();
 }
Exemplo n.º 4
0
 public OctomapWithPose()
 {
     this.header  = new Header();
     this.origin  = new Pose();
     this.octomap = new Octomap();
 }