Skip to content

LatLonHeightDouble

huggins edited this page May 3, 2023 · 4 revisions

Lat Lon Height Double

Container for Latitude, Longitude, and Height coordinates in double-precision (64-bit).

struct FLatLonHeightDouble

Back to Top


Members

Type Name Description
double Height The height value in double precision.
double Latitude The latitude value in double precision.
double Longitude The longitude value in double precision.

Back to Top


Constructors

Name Description
FLatLonHeightDouble() Default constructor
FLatLonHeightDouble(const double Latitude, const double Longitude, const double Height) Constructor that takes in double-precision lat, long, and height values

Back to Top


Details

Height

double Height

The height value in double precision.

Back to Top


Latitude

double Latitude

The latitude value in double precision.

Back to Top


Longitude

double Longitude

The longitude value in double precision.

Back to Top


FLatLonHeightDouble

FLatLonHeightDouble()

Default constructor

Back to Top


FLatLonHeightDouble

FLatLonHeightDouble
(
	const double Latitude, 
	const double Longitude, 
	const double Height
)

Constructor that takes in double-precision lat, lon, and height values

Parameter Description
Latitude The latitude value in double precision.
Longitude The longitude value in double precision.
Height The height value in double precision.

Back to Top


Clone this wiki locally