We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3346747 commit 05a2785Copy full SHA for 05a2785
voxblox/include/voxblox/core/esdf_map.h
@@ -51,6 +51,10 @@ class EsdfMap {
51
virtual ~EsdfMap() {}
52
53
Layer<EsdfVoxel>* getEsdfLayerPtr() { return esdf_layer_.get(); }
54
+ const Layer<EsdfVoxel>* getEsdfLayerConstPtr() const {
55
+ return esdf_layer_.get();
56
+ }
57
+
58
const Layer<EsdfVoxel>& getEsdfLayer() const { return *esdf_layer_; }
59
60
FloatingPoint block_size() const { return block_size_; }
0 commit comments