-
Notifications
You must be signed in to change notification settings - Fork 5
NorthEastDown
huggins edited this page May 10, 2023
·
1 revision
Container for vectors for north, east, and down directions.
public struct FNorthEastDown
Type | Name | Description |
---|---|---|
Vector3 | DownVector | Specifies the vector representing the downward direction. |
Vector3 | EastVector | Specifies the vector representing the eastward direction. |
Vector3 | NorthVector | Specifies the vector representing the northward direction. |
Name | Description |
---|---|
FNorthEastDown() | Default constructor |
FNorthEastDown(Vector3 NorthVector, Vector3 EastVector, Vector3 DownVector) | Constructor that takes in the north, east, and down vectors |
Vector3 DownVector
Specifies the vector representing the downward direction.
Vector3 EastVector
Specifies the vector representing the eastward direction.
Vector3 NorthVector
Specifies the vector representing the northward direction.
FNorthEastDown()
Default constructor
FNorthEastDown
(
Vector3 NorthVector,
Vector3 EastVector,
Vector3 DownVector
)
Constructor that takes in the north, east, and down vectors.
Parameter | Description |
---|---|
NorthVector | Specifies the vector representing the northward direction. |
EastVector | Specifies the vector representing the eastward direction. |
DownVector | Specifies the vector representing the downward direction. |