Skip to content

NorthEastDown

huggins edited this page May 10, 2023 · 1 revision

North East Down

Container for vectors for north, east, and down directions.

public struct FNorthEastDown

Back to Top


Members

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.

Back to Top


Constructors

Name Description
FNorthEastDown() Default constructor
FNorthEastDown(Vector3 NorthVector, Vector3 EastVector, Vector3 DownVector) Constructor that takes in the north, east, and down vectors

Back to Top


Details

Down Vector

Vector3 DownVector

Specifies the vector representing the downward direction.

Back to Top


East Vector

Vector3 EastVector

Specifies the vector representing the eastward direction.

Back to Top


North Vector

Vector3 NorthVector

Specifies the vector representing the northward direction.

Back to Top


FNorthEastDown

FNorthEastDown()

Default constructor

Back to Top


FNorthEastDown

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.

Back to Top


Clone this wiki locally