Class: Geometry_msgs::PolygonStamped

Inherits:
ROS::Message
  • Object
show all
Defined in:
lib/geometry_msgs/PolygonStamped.rb

Constant Summary collapse

@@struct_L3 =
::ROS::Struct.new("L3")
@@struct_f3 =
::ROS::Struct.new("f3")
@@struct_L =
::ROS::Struct.new("L")
@@slot_types =
['Header','geometry_msgs/Polygon']

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ PolygonStamped

Constructor. You can set the default values using keyword operators.

Parameters:

  • args (Hash) (defaults to: {})

    keyword for initializing values

Options Hash (args):

  • :header (Header)

    initialize value

  • :polygon (geometry_msgs/Polygon)

    initialize value



79
80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/geometry_msgs/PolygonStamped.rb', line 79

def initialize(args={})
  # message fields cannot be None, assign default values for those that are
  if args[:header]
    @header = args[:header]
  else
    @header = Std_msgs::Header.new
  end
  if args[:polygon]
    @polygon = args[:polygon]
  else
    @polygon = Geometry_msgs::Polygon.new
  end
end

Instance Attribute Details

#headerObject

Returns the value of attribute header.



66
67
68
# File 'lib/geometry_msgs/PolygonStamped.rb', line 66

def header
  @header
end

#polygonObject

Returns the value of attribute polygon.



66
67
68
# File 'lib/geometry_msgs/PolygonStamped.rb', line 66

def polygon
  @polygon
end

Class Method Details

.md5sumObject



11
12
13
# File 'lib/geometry_msgs/PolygonStamped.rb', line 11

def self.md5sum
  "c6be8f7dc3bee7fe9e8d296070f53340"
end

.typeObject



15
16
17
# File 'lib/geometry_msgs/PolygonStamped.rb', line 15

def self.type
  "geometry_msgs/PolygonStamped"
end

Instance Method Details

#_get_typesString

internal API method

Returns:

  • (String)

    Message type string.



95
96
97
# File 'lib/geometry_msgs/PolygonStamped.rb', line 95

def _get_types
  @slot_types
end

#deserialize(str) ⇒ Object

unpack serialized message in str into this message instance

@param [String] str: byte array of serialized message


121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# File 'lib/geometry_msgs/PolygonStamped.rb', line 121

def deserialize(str)

  begin
    if @header == nil
      @header = Std_msgs::Header.new
    end
    if @polygon == nil
      @polygon = Geometry_msgs::Polygon.new
    end
    end_point = 0
    start = end_point
    end_point += ROS::Struct::calc_size('L3')
    (@header.seq, @header.stamp.secs, @header.stamp.nsecs,) = @@struct_L3.unpack(str[start..(end_point-1)])
    start = end_point
    end_point += 4
    (length,) = @@struct_L.unpack(str[start..(end_point-1)])
    start = end_point
    end_point += length
    @header.frame_id = str[start..(end_point-1)]
    start = end_point
    end_point += 4
    (length,) = @@struct_L.unpack(str[start..(end_point-1)])
    @polygon.points = []
    length.times do
      val1 = Geometry_msgs::Point32.new
      _x = val1
      start = end_point
      end_point += ROS::Struct::calc_size('f3')
      (_x.x, _x.y, _x.z,) = @@struct_f3.unpack(str[start..(end_point-1)])
      @polygon.points.push(val1)
    end
    return self
  rescue => exception
    raise "message DeserializationError: #{exception}" #most likely buffer underfill
  end
end

#has_header?Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/geometry_msgs/PolygonStamped.rb', line 19

def has_header?
  true
end

#message_definitionObject



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/geometry_msgs/PolygonStamped.rb', line 23

def message_definition
  "# This represents a Polygon with reference coordinate frame and timestamp
Header header
Polygon polygon

================================================================================
MSG: std_msgs/Header
# Standard metadata for higher-level stamped data types.
# This is generally used to communicate timestamped data 
# in a particular coordinate frame.
# 
# sequence ID: consecutively increasing ID 
uint32 seq
#Two-integer timestamp that is expressed as:
# * stamp.secs: seconds (stamp_secs) since epoch
# * stamp.nsecs: nanoseconds since stamp_secs
# time-handling sugar is provided by the client library
time stamp
#Frame this data is associated with
# 0: no frame
# 1: global frame
string frame_id

================================================================================
MSG: geometry_msgs/Polygon
#A specification of a polygon where the first and last points are assumed to be connected
Point32[] points

================================================================================
MSG: geometry_msgs/Point32
# This contains the position of a point in free space(with 32 bits of precision).
# It is recommeded to use Point wherever possible instead of Point32.  
# 
# This recommendation is to promote interoperability.  
#
# This message is designed to take up less space when sending
# lots of points at once, as in the case of a PointCloud.  

float32 x
float32 y
float32 z
"
end

#serialize(buff) ⇒ Object

serialize message into buffer

Parameters:

  • buff (IO)

    buffer



101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/geometry_msgs/PolygonStamped.rb', line 101

def serialize(buff)
  begin
    buff.write(@@struct_L3.pack(@header.seq, @header.stamp.secs, @header.stamp.nsecs))
    _x = @header.frame_id
    length = _x.length
    buff.write([length, _x].pack("La#{length}"))
    length = @polygon.points.length
    buff.write(@@struct_L.pack(length))
    for val1 in @polygon.points
      _x = val1
      buff.write(@@struct_f3.pack(_x.x, _x.y, _x.z))
    end
  rescue => exception
    raise "some erro in serialize: #{exception}"

  end
end