-
Notifications
You must be signed in to change notification settings - Fork 16
LatLonHeightDouble
huggins edited this page May 3, 2023
·
4 revisions
Container for Latitude, Longitude, and Height coordinates in double-precision (64-bit).
struct FLatLonHeightDouble
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. |
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 |
double Height
The height value in double precision.
double Latitude
The latitude value in double precision.
double Longitude
The longitude value in double precision.
FLatLonHeightDouble()
Default constructor
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. |