cosecant function

double cosecant(
  1. Angle a
)

The ratio of the hypotenuse to the side opposite an acute angle; the reciprocal of sine.

Implementation

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