ASCO Aerial Autonomy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
roll_pitch_yaw_thrust.h
Go to the documentation of this file.
1 #pragma once
2 
9  RollPitchYawThrust() : r(0), p(0), y(0), t(0) {}
18  RollPitchYawThrust(double r, double p, double y, double t)
19  : r(r), p(p), y(y), t(t) {}
20  double r;
21  double p;
22  double y;
23  double t;
24 };
double y
yaw
Definition: roll_pitch_yaw_thrust.h:22
double p
pitch
Definition: roll_pitch_yaw_thrust.h:21
RollPitchYawThrust()
Implicit instantiation to zero.
Definition: roll_pitch_yaw_thrust.h:9
Roll, pitch, yaw, and thrust message.
Definition: roll_pitch_yaw_thrust.h:5
double r
roll
Definition: roll_pitch_yaw_thrust.h:20
double t
thrust
Definition: roll_pitch_yaw_thrust.h:23
RollPitchYawThrust(double r, double p, double y, double t)
Explicit instantiation.
Definition: roll_pitch_yaw_thrust.h:18