pub fn acotd(x: FLOAT) -> FLOAT
Returns the inverse of the cotangent in degrees
assert_eq(acotd(1.0), 45.0);
assert_eq(acotd(-1.0), -45.0);
assert_eq(acotd(0.0), 90.0);