Return the sum of two velocities.
Velocity operator +(Velocity other) { return new Velocity( pixelsPerSecond: pixelsPerSecond + other.pixelsPerSecond); }