atand function

double atand(
  1. double value
)

Calculates arctangent in degrees

Implementation

double atand(double value) {
  return toDegrees(math.atan(value));
}