1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0025574: gp_YawPitchRoll Euler Angle computation gives wrong results - warnings

Eliminate VC14 compiler warnings
This commit is contained in:
abv 2016-02-05 11:14:03 +03:00
parent f1d057b7a4
commit 917cae00ca
2 changed files with 0 additions and 3 deletions

View File

@ -280,7 +280,6 @@ void BOPDS_Iterator::Intersect()
BOPDS_MapOfPassKeyBoolean aMPKXB(100, aAllocator);
BOPDS_PassKeyBoolean aPKXB;
//
BOPCol_BoxBndTreeSelector aSelector;
BOPCol_BoxBndTree aBBTree;
NCollection_UBTreeFiller <Standard_Integer, Bnd_Box> aTreeFiller(aBBTree);
//

View File

@ -3740,7 +3740,6 @@ static Standard_Integer OCC25574 (Draw_Interpretor& theDI, Standard_Integer /*ar
}
// set the same angles in quaternion
gp_Quaternion aQuat;
aQuat.SetEulerAngles (gp_EulerSequence(i), anAngle[0], anAngle[1], anAngle[2]);
gp_Mat aRQ = aQuat.GetMatrix();
@ -3808,7 +3807,6 @@ static Standard_Integer OCC25574 (Draw_Interpretor& theDI, Standard_Integer /*ar
q.Set(0.06766916507860499, 0.21848101129786085, 0.11994599260380681,0.9660744746954637);
q.GetEulerAngles(gp_Intrinsic_ZYX, alpha,beta, gamma);
Standard_Real alpha2,beta2,gamma2;
q.GetEulerAngles(gp_Extrinsic_XYZ, alpha2,beta2,gamma2);
// gp_Intrinsic_ZYX and gp_Extrinsic_XYZ should produce the same values of angles but in opposite order