| 8 | } |
| 9 | |
| 10 | void EDTEnvironment::setMap(shared_ptr<SDFMap>& map) { |
| 11 | this->sdf_map_ = map; |
| 12 | resolution_inv_ = 1 / sdf_map_->getResolution(); |
| 13 | } |
| 14 | |
| 15 | void EDTEnvironment::setObjPrediction(ObjPrediction prediction) { |
| 16 | this->obj_prediction_ = prediction; |
nothing calls this directly
no test coverage detected