Skip to content
This repository was archived by the owner on Jan 23, 2024. It is now read-only.

Commit a9b6cb4

Browse files
authored
Merge pull request #1 from rhaschke/arrow-strip-marker
Minor adaptions for arrow strip marker
2 parents 1282d2e + 53216ec commit a9b6cb4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/arrow_strip_marker_test.py src/test/send_arrow_strip_marker.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
FRAME_ID = "map"
1111
rospy.init_node("marker_test")
12-
marker_pub = rospy.Publisher("marker_test", Marker)
12+
marker_pub = rospy.Publisher("marker_test", Marker, queue_size=1)
1313

1414

1515
def generate_arrows(points, pose, scale, color):
@@ -35,6 +35,7 @@ def generate_circle(radius, samples):
3535
y = radius * math.cos(angle_step * i)
3636
points.append(Point(x, y, 0))
3737
points.append(points[0])
38+
points.append(Point())
3839
return points
3940

4041

0 commit comments

Comments
 (0)