Skip to content

PsiThetaPhi

huggins edited this page May 3, 2023 · 4 revisions

Psi Theta Phi

Contains information for the 3-dimensional rotation values for psi, theta, and phi.

struct FPsiThetaPhi

Back to Top


Members

Type Name Description
float Phi The phi (roll) value.
float Psi The psi (heading) value.
float Theta The theta (pitch) value.

Back to Top


Constructors

Name Description
FPsiThetaPhi() Default constructor
FPsiThetaPhi(const float Psi, const float Theta, const float Phi) Constructor that takes in float-precision psi, theta, phi values.
FPsiThetaPhi(FRotator UnrealRotation) Constructor that takes in an FRotator value.

Back to Top


Details

Phi

float Phi

The phi (roll) value.

Category: GRILL DIS|Structs

Back to Top


Psi

float Psi

The psi (heading) value.

Category: GRILL DIS|Structs

Back to Top


Theta

float Theta

The theta (pitch) value.

Category: GRILL DIS|Structs

Back to Top


FPsiThetaPhi

FPsiThetaPhi()

Default constructor

Back to Top


FPsiThetaPhi

FPsiThetaPhi
(
	const float Psi,
	const float Theta, 
	const float Phi
)

Constructor that takes in float-precision psi, theta, phi values

Parameter Description
Psi The psi (heading) value.
Theta The theta (pitch) value.
Phi The phi (roll) value.

Back to Top


FPsiThetaPhi

FPsiThetaPhi(FRotator UnrealRotation)

Constructor that takes in an FRotator value.

Parameter Description
UnrealRotation The Unreal Engine rotation to form an FPsiThetaPhi from.

Back to Top


Clone this wiki locally