operator - method

Angle operator -(
  1. Angle other
)

Compute the difference of this to other, returning a new angle.

Implementation

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