atan static method

Angle atan(
  1. double x
)

Standard dart:math atan() function, adjusted to return an Angle instead of a double.

Implementation

static Angle atan(double x) {
  return Angle.fromRadians(math.atan(x));
}