operator / method

Angle operator /(
  1. Angle other
)

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

Implementation

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