MCPcopy Create free account
hub / github.com/Robotics-STAR-Lab/RACER / getChunkBoxes

Method getChunkBoxes

swarm_exploration/plan_env/src/multi_map_manager.cpp:540–549  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

538}
539
540void MultiMapManager::getChunkBoxes(
541 vector<Eigen::Vector3d>& mins, vector<Eigen::Vector3d>& maxs, bool reset) {
542 for (auto& box : chunk_boxes_) {
543 if (box.valid_) {
544 mins.push_back(box.min_);
545 maxs.push_back(box.max_);
546 if (reset) box.valid_ = false;
547 }
548 }
549}
550
551// MultiMapManager::
552} // namespace fast_planner

Callers 3

updateGridDataMethod · 0.80
searchFrontiersMethod · 0.80
isFrontierCoveredMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected