Go to the documentation of this file.00001
00002
00003 from std_msgs.msg import ColorRGBA, Header
00004
00005
00006
00007
00008 def NewColor(r, g, b, a=1.0):
00009 col = ColorRGBA()
00010 col.r = r
00011 col.g = g
00012 col.b = b
00013 col.a = a
00014 return col
00015
00016