cosecant method

double cosecant()

Calculates and returns the cosecant of this angle. The cosecant of an angle is equivalent to 1 over the sine.

Implementation

double cosecant() => 1.0 / math.sin(mks.toDouble());