Angle.atan constructor

Angle.atan(
  1. double c
)

Create an angle by computing the arc tangent of c.

Implementation

Angle.atan(final double c) : _storage = math.atan(c);