public Int32 CompareTo(Radians other) { return(CompareTo((Degrees)other)); }
public Int32 CompareTo(Radians other) { return(_value.CompareTo(other._value)); }
public Boolean Equals(Radians other) { return(Equals((Degrees)other)); }
public Boolean Equals(Radians other) { return(_value == other._value); }