-
Notifications
You must be signed in to change notification settings - Fork 16
NorthEastDown
huggins edited this page May 3, 2023
·
4 revisions
Container for vectors for north, east, and down directions.
struct FNorthEastDown
Type | Name | Description |
---|---|---|
FVector | DownVector | Specifies the vector representing the downward direction. |
FVector | EastVector | Specifies the vector representing the eastward direction. |
FVector | NorthVector | Specifies the vector representing the northward direction. |
Name | Description |
---|---|
FNorthEastDown() | Default constructor |
FNorthEastDown(FVector NorthVector, FVector EastVector, FVector DownVector) | Constructor that takes in the north, east, and down vectors |
FVector DownVector
Specifies the vector representing the downward direction.
Category: GRILL DIS|Structs
FVector EastVector
Specifies the vector representing the eastward direction.
Category: GRILL DIS|Structs
FVector NorthVector
Specifies the vector representing the northward direction.
Category: GRILL DIS|Structs
FNorthEastDown()
Default constructor
FNorthEastDown
(
FVector NorthVector,
FVector EastVector,
FVector 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. |