| 543 | } |
| 544 | |
| 545 | void SDFMap::getBox(Eigen::Vector3d& bmin, Eigen::Vector3d& bmax) { |
| 546 | bmin = mp_->box_mind_; |
| 547 | bmax = mp_->box_maxd_; |
| 548 | // bmin = mp_->vmin_; |
| 549 | // bmax = mp_->vmax_; |
| 550 | // bmin[2] = mp_->box_mind_[2]; |
| 551 | // bmax[2] = mp_->box_maxd_[2]; |
| 552 | } |
| 553 | |
| 554 | void SDFMap::getUpdatedBox(Eigen::Vector3d& bmin, Eigen::Vector3d& bmax, bool reset) { |
| 555 | bmin = md_->update_min_; |
no outgoing calls
no test coverage detected