-
Notifications
You must be signed in to change notification settings - Fork 20
HeadingPitchRoll
huggins edited this page May 3, 2023
·
4 revisions
Contains information for the 3-dimensional rotation values for heading, pitch, and roll.
struct FHeadingPitchRoll| Type | Name | Description |
|---|---|---|
| float | Heading | The heading (yaw) value. |
| float | Pitch | The pitch value. |
| float | Roll | The roll value. |
| Name | Description |
|---|---|
| FHeadingPitchRoll() | Default constructor |
| FHeadingPitchRoll(const float Heading, const float Pitch, const float Roll) | Constructor that takes in float-precision heading, pitch, and roll values |
float HeadingThe heading (yaw) value.
Category: GRILL DIS|Structs
float PitchThe pitch value.
Category: GRILL DIS|Structs
float RollThe roll value.
Category: GRILL DIS|Structs
FHeadingPitchRoll()Default constructor
FHeadingPitchRoll
(
const float Heading,
const float Pitch,
const float Roll
)Constructor that takes in float-precision heading, pitch, and roll ECEF values
| Parameter | Description |
|---|---|
| Heading | The heading (yaw) value. |
| Pitch | The pitch value. |
| Roll | The roll value. |