-
Notifications
You must be signed in to change notification settings - Fork 20
PsiThetaPhi
huggins edited this page May 3, 2023
·
4 revisions
Contains information for the 3-dimensional rotation values for psi, theta, and phi.
struct FPsiThetaPhi| Type | Name | Description |
|---|---|---|
| float | Phi | The phi (roll) value. |
| float | Psi | The psi (heading) value. |
| float | Theta | The theta (pitch) value. |
| 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. |
float PhiThe phi (roll) value.
Category: GRILL DIS|Structs
float PsiThe psi (heading) value.
Category: GRILL DIS|Structs
float ThetaThe theta (pitch) value.
Category: GRILL DIS|Structs
FPsiThetaPhi()Default constructor
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. |
FPsiThetaPhi(FRotator UnrealRotation)Constructor that takes in an FRotator value.
| Parameter | Description |
|---|---|
| UnrealRotation | The Unreal Engine rotation to form an FPsiThetaPhi from. |