cotangent method

double cotangent()

Calculates and returns the cotangent of this angle. The cotangent is equivalent to 1 over the tangent.

Implementation

double cotangent() => 1.0 / math.tan(mks.toDouble());