-
Notifications
You must be signed in to change notification settings - Fork 7
PsiThetaPhi
huggins edited this page May 10, 2023
·
1 revision
Contains information for the 3-dimensional rotation values for psi, theta, and phi.
public 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(float Psi, float Theta, float Phi) | Constructor that takes in float-precision psi, theta, phi values. |
| FPsiThetaPhi(Orientation InOrientation) | Constructor that takes in an OpenDIS Orientation value. |
float PhiThe phi (roll) value.
float PsiThe psi (heading) value.
float ThetaThe theta (pitch) value.
FPsiThetaPhi()Default constructor
FPsiThetaPhi
(
float Psi,
float Theta,
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(Orientation InOrientation)Constructor that takes in an OpenDIS Orientation value.
| Parameter | Description |
|---|---|
| InOrientation | The OpenDIS Orientation value that holds the psi, theta, and phi values. |