Angle.acos constructor

Angle.acos(
  1. double c
)

Create an angle by computing the arc cosine of c.

Implementation

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