operator + method
Sum of two ECFs.
Implementation
EarthCenteredEarthFixed operator +(EarthCenteredEarthFixed other) {
return EarthCenteredEarthFixed(x + other.x, y + other.y, z + other.z);
}
Sum of two ECFs.
EarthCenteredEarthFixed operator +(EarthCenteredEarthFixed other) {
return EarthCenteredEarthFixed(x + other.x, y + other.y, z + other.z);
}