MCPcopy Create free account
hub / github.com/ANYbotics/grid_map / clearRows

Method clearRows

grid_map_core/src/GridMap.cpp:754–758  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

752}
753
754void GridMap::clearRows(unsigned int index, unsigned int nRows) {
755 for (auto& layer : layers_) {
756 data_.at(layer).block(index, 0, nRows, getSize()(1)).setConstant(NAN);
757 }
758}
759
760void GridMap::clearCols(unsigned int index, unsigned int nCols) {
761 for (auto& layer : layers_) {

Callers

nothing calls this directly

Calls 1

atMethod · 0.80

Tested by

no test coverage detected