sine function

double sine(
  1. Angle a
)

Calculates the sine of an Angle (opposite divided by hypotenuse).

Implementation

double sine(Angle a) => a.sine();