Skip to content

Commit 231c2ed

Browse files
committed
defined method to draw map data
1 parent 1aced18 commit 231c2ed

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/components/mapping/binary/binary_grid_mapper.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,14 @@ def update(self, point_cloud, state):
4242
points_y_list.append(global_y)
4343

4444
# updata map data
45+
46+
def draw(self, axes, elems):
47+
"""
48+
Function to draw map data
49+
axes: Axes object of figure
50+
elems: List of plot object
51+
"""
52+
53+
# draw occupancy grid map
54+
55+
pass

0 commit comments

Comments
 (0)