CreOS SDK
The CreOS SDK allows you to interact with Avular robots
 
Loading...
Searching...
No Matches
inertia.hpp
Go to the documentation of this file.
1
8namespace geometry_msgs::msg {
15class Inertia {
16public:
17 // Mass [kg]
18 double m;
19
20 // Center of mass [m]
22
23 // Inertia Tensor [kg-m^2]
24 // | ixx ixy ixz |
25 // I = | ixy iyy iyz |
26 // | ixz iyz izz |
27 double ixx;
28 double ixy;
29 double ixz;
30 double iyy;
31 double iyz;
32 double izz;
33};
34} // namespace geometry_msgs::msg
ROS message class definition for Inertia.
Definition inertia.hpp:15
ROS message class definition for Vector3.
Definition vector3.hpp:15
message definitions of the geometry_msgs package
Definition accel.hpp:8