| 61 | } |
| 62 | |
| 63 | void CostmapLayer::MatchSize() { |
| 64 | Costmap2D *master = layered_costmap_->GetCostMap(); |
| 65 | ResizeMap(master->GetSizeXCell(), master->GetSizeYCell(), master->GetResolution(), |
| 66 | master->GetOriginX(), master->GetOriginY()); |
| 67 | } |
| 68 | |
| 69 | void CostmapLayer::AddExtraBounds(double mx0, double my0, double mx1, double my1) { |
| 70 | extra_min_x_ = std::min(mx0, extra_min_x_); |
nothing calls this directly
no test coverage detected