constructors_std.py
Go to the documentation of this file.
00001 #!/usr/bin/env python
00002 
00003 from std_msgs.msg import ColorRGBA, Header
00004 
00005 
00006 ## Color ##
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 # eof


frame_editor
Author(s): ipa-frn
autogenerated on Sat Jun 8 2019 20:21:35