Angle.asin constructor

Angle.asin(
  1. double c
)

Create an angle by computing the arc sine of c.

Implementation

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