Calculates the tangent of an angle given in degrees.
degree
double tanDegree(num degree) { return tan(degree * (pi / 180)); }