operator + method

Angle operator +(
  1. Angle other
)

Adds this Angle by another one and returns the result as a new Angle object.

Implementation

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