-
Notifications
You must be signed in to change notification settings - Fork 6
HeadingPitchRoll
huggins edited this page May 10, 2023
·
1 revision
Contains information for the 3-dimensional rotation values for heading, pitch, and roll.
public 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(float Heading, float Pitch, float Roll) | Constructor that takes in float-precision heading, pitch, and roll values |
| FHeadingPitchRoll(Orientation InOrientation) | Constructor that takes in an OpenDIS Orientation value. |
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
(
float Heading,
float Pitch,
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. |
FHeadingPitchRoll
(
Orientation InOrientation
)Constructor that takes in an OpenDIS Orientation value.
| Parameter | Description |
|---|---|
| InOrientation | The OpenDIS Orientation value that holds the heading (psi), pitch (theta), and roll (phi) values. |