operator * method

Angle operator *(
  1. Angle other
)

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

Implementation

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