FractionalOffset operator +(FractionalOffset other)

Returns the sum of two fractional offsets.

Source

FractionalOffset operator +(FractionalOffset other) {
  return new FractionalOffset(dx + other.dx, dy + other.dy);
}