operator - method

Implementation

EarthCenteredEarthFixed operator -(EarthCenteredEarthFixed other) {
  final dx = x - other.x;
  final dy = x - other.y;
  final dz = x - other.z;

  return EarthCenteredEarthFixed(dx, dy, dz);
}