| 552 | } |
| 553 | |
| 554 | void SDFMap::getUpdatedBox(Eigen::Vector3d& bmin, Eigen::Vector3d& bmax, bool reset) { |
| 555 | bmin = md_->update_min_; |
| 556 | bmax = md_->update_max_; |
| 557 | if (reset) md_->reset_updated_box_ = true; |
| 558 | } |
| 559 | |
| 560 | double SDFMap::getDistWithGrad(const Eigen::Vector3d& pos, Eigen::Vector3d& grad) { |
| 561 | if (!isInMap(pos)) { |
no outgoing calls
no test coverage detected