operator + method

Sum of two ECFs.

Implementation

EarthCenteredEarthFixed operator +(EarthCenteredEarthFixed other) {
  return EarthCenteredEarthFixed(x + other.x, y + other.y, z + other.z);
}