Angle.fromDegMinSec constructor

Angle.fromDegMinSec(
  1. int d,
  2. int m,
  3. double s, [
  4. double uncert = 0.0,
])

This constructor creates an angle value from the three values passed in for degrees, minutes, and seconds of arc.

Implementation

Angle.fromDegMinSec(int d, int m, double s, [double uncert = 0.0])
    : super(degrees.toMks(d) + minutesArc.toMks(m) + secondsArc.toMks(s),
          Angle.radians, uncert);