operator - method

Angle operator -(
  1. Angle other
)

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

Implementation

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