Go to the documentation of this file.00001 """autogenerated by genpy from pr2_laser_snapshotter/TiltLaserSnapshotGoal.msg. Do not edit."""
00002 import sys
00003 python3 = True if sys.hexversion > 0x03000000 else False
00004 import genpy
00005 import struct
00006
00007
00008 class TiltLaserSnapshotGoal(genpy.Message):
00009 _md5sum = "f30b95de7b6756e5f67b5d49f4f7affd"
00010 _type = "pr2_laser_snapshotter/TiltLaserSnapshotGoal"
00011 _has_header = False
00012 _full_text = """# ====== DO NOT MODIFY! AUTOGENERATED FROM AN ACTION DEFINITION ======
00013 float64 angle_begin
00014 float64 angle_end
00015 float64 duration
00016
00017 """
00018 __slots__ = ['angle_begin','angle_end','duration']
00019 _slot_types = ['float64','float64','float64']
00020
00021 def __init__(self, *args, **kwds):
00022 """
00023 Constructor. Any message fields that are implicitly/explicitly
00024 set to None will be assigned a default value. The recommend
00025 use is keyword arguments as this is more robust to future message
00026 changes. You cannot mix in-order arguments and keyword arguments.
00027
00028 The available fields are:
00029 angle_begin,angle_end,duration
00030
00031 :param args: complete set of field values, in .msg order
00032 :param kwds: use keyword arguments corresponding to message field names
00033 to set specific fields.
00034 """
00035 if args or kwds:
00036 super(TiltLaserSnapshotGoal, self).__init__(*args, **kwds)
00037
00038 if self.angle_begin is None:
00039 self.angle_begin = 0.
00040 if self.angle_end is None:
00041 self.angle_end = 0.
00042 if self.duration is None:
00043 self.duration = 0.
00044 else:
00045 self.angle_begin = 0.
00046 self.angle_end = 0.
00047 self.duration = 0.
00048
00049 def _get_types(self):
00050 """
00051 internal API method
00052 """
00053 return self._slot_types
00054
00055 def serialize(self, buff):
00056 """
00057 serialize message into buffer
00058 :param buff: buffer, ``StringIO``
00059 """
00060 try:
00061 _x = self
00062 buff.write(_struct_3d.pack(_x.angle_begin, _x.angle_end, _x.duration))
00063 except struct.error as se: self._check_types(se)
00064 except TypeError as te: self._check_types(te)
00065
00066 def deserialize(self, str):
00067 """
00068 unpack serialized message in str into this message instance
00069 :param str: byte array of serialized message, ``str``
00070 """
00071 try:
00072 end = 0
00073 _x = self
00074 start = end
00075 end += 24
00076 (_x.angle_begin, _x.angle_end, _x.duration,) = _struct_3d.unpack(str[start:end])
00077 return self
00078 except struct.error as e:
00079 raise genpy.DeserializationError(e)
00080
00081
00082 def serialize_numpy(self, buff, numpy):
00083 """
00084 serialize message with numpy array types into buffer
00085 :param buff: buffer, ``StringIO``
00086 :param numpy: numpy python module
00087 """
00088 try:
00089 _x = self
00090 buff.write(_struct_3d.pack(_x.angle_begin, _x.angle_end, _x.duration))
00091 except struct.error as se: self._check_types(se)
00092 except TypeError as te: self._check_types(te)
00093
00094 def deserialize_numpy(self, str, numpy):
00095 """
00096 unpack serialized message in str into this message instance using numpy for array types
00097 :param str: byte array of serialized message, ``str``
00098 :param numpy: numpy python module
00099 """
00100 try:
00101 end = 0
00102 _x = self
00103 start = end
00104 end += 24
00105 (_x.angle_begin, _x.angle_end, _x.duration,) = _struct_3d.unpack(str[start:end])
00106 return self
00107 except struct.error as e:
00108 raise genpy.DeserializationError(e)
00109
00110 _struct_I = genpy.struct_I
00111 _struct_3d = struct.Struct("<3d")