operator + method

Angle operator +(
  1. Angle other
)

Accumulate this and other, returning a new angle.

Implementation

Angle operator +(final Angle other) => Angle.radians(radians + other.radians);