Backed out changeset: 91c06257daf0

--HG--
branch : release
This commit is contained in:
Roman Telezhynskyi 2019-09-09 18:44:27 +03:00
parent 7055fa7385
commit d44ceda840
2 changed files with 3 additions and 4 deletions

View File

@ -30,7 +30,6 @@
- Changing settings for move and rotate tools through property browser does not take in count previous change for label point and Show label option. - Changing settings for move and rotate tools through property browser does not take in count previous change for label point and Show label option.
- Fix locking file after double save as. - Fix locking file after double save as.
- Key --ignoremargins still required margins. - Key --ignoremargins still required margins.
- Fix inverse trigonometric functions. Wrong work with degrees.
# Version 0.6.1 October 23, 2018 # Version 0.6.1 October 23, 2018
- [#885] Regression. Broken support for multi size measurements. - [#885] Regression. Broken support for multi size measurements.

View File

@ -184,7 +184,7 @@ qreal QmuParser::SinD(qreal v)
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
qreal QmuParser::ASinD(qreal v) qreal QmuParser::ASinD(qreal v)
{ {
return qAsin(qDegreesToRadians(v)); return qRadiansToDegrees(qAsin(v));
} }
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
@ -196,7 +196,7 @@ qreal QmuParser::CosD(qreal v)
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
qreal QmuParser::ACosD(qreal v) qreal QmuParser::ACosD(qreal v)
{ {
return qAcos(qDegreesToRadians(v)); return qRadiansToDegrees(qAcos(v));
} }
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
@ -208,7 +208,7 @@ qreal QmuParser::TanD(qreal v)
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------
qreal QmuParser::ATanD(qreal v) qreal QmuParser::ATanD(qreal v)
{ {
return qAtan(qDegreesToRadians(v)); return qRadiansToDegrees(qAtan(v));
} }
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------