1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
//! Definitions for the ROS2 `geometry_msgs` package.
//!
//! Based on definitions taken from <https://github.com/ros2/common_interfaces/tree/rolling/geometry_msgs>
//!
use ;
use Header;
/// This represents a vector in free space.
///
/// This is semantically different than a point.
/// A vector is always anchored at the origin.
/// When a transform is applied to a vector, only the rotational component is applied.
/// This represents an orientation in free space in quaternion form.
/// This represents the transform between two coordinate frames in free space.
/// This expresses a transform from coordinate frame `header.frame_id`
/// to the coordinate frame `child_frame_id` at the time of `header.stamp`
///
/// This message is mostly used by the [`tf2`](https://docs.ros.org/en/rolling/p/tf2/) package.
/// See its documentation for more information.
///
/// The `child_frame_id` is necessary in addition to the `frame_id`
/// in the Header to communicate the full reference for the transform
/// in a self contained message.