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