Skip to content

HeadingPitchRoll

huggins edited this page May 10, 2023 · 1 revision

Heading Pitch Roll

Contains information for the 3-dimensional rotation values for heading, pitch, and roll.

public struct FHeadingPitchRoll

Back to Top


Members

Type Name Description
float Heading The heading (yaw) value.
float Pitch The pitch value.
float Roll The roll value.

Back to Top


Constructors

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.

Back to Top


Details

Heading

float Heading

The heading (yaw) value.

Category: GRILL DIS|Structs

Back to Top


Pitch

float Pitch

The pitch value.

Category: GRILL DIS|Structs

Back to Top


Roll

float Roll

The roll value.

Category: GRILL DIS|Structs

Back to Top


FHeadingPitchRoll

FHeadingPitchRoll()

Default constructor

Back to Top


FHeadingPitchRoll

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.

Back to Top


FHeadingPitchRoll

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.

Back to Top