tangent function

double tangent(
  1. Angle a
)

Calculates the tangent of an Angle (opposite divided by adjacent).

Implementation

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