-
Notifications
You must be signed in to change notification settings - Fork 16
EarthCenteredEarthFixedDouble
huggins edited this page May 3, 2023
·
4 revisions
Contains Earth Centered Earth Fixed (ECEF) coordinates in double-precision (64-bit).
struct FEarthCenteredEarthFixedDouble
Type | Name | Description |
---|---|---|
double | X | The ECEF X value in double precision. |
double | Y | The ECEF Y value in double precision. |
double | Z | The ECEF Z value in double precision. |
Name | Description |
---|---|
FEarthCenteredEarthFixedDouble() | Default constructor |
FEarthCenteredEarthFixedDouble(const double X, const double Y, const double Z) | Constructor that takes in double-precision X, Y, Z ECEF values |
double X
The ECEF X value in double precision.
double Y
The ECEF Y value in double precision.
double Z
The ECEF Z value in double precision.
FEarthCenteredEarthFixedDouble()
Default constructor
FEarthCenteredEarthFixedDouble
(
const double X,
const double Y,
const double Z
)
Constructor that takes in double-precision X, Y, Z ECEF values
Parameter | Description |
---|---|
X | The ECEF X value in double precision. |
Y | The ECEF Y value in double precision. |
Z | The ECEF Z value in double precision. |