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