Angle.fromDegMinSec constructor
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);