1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-04 13:13:25 +03:00

0012042: Problem with standard Qt-based Import/Export sample application

Front and right views in OCCT CSharp/mfc/qt samples were swapped.
This commit is contained in:
apn
2016-02-09 14:30:52 +03:00
committed by abv
parent cd718a73c7
commit 32757c6e15
8 changed files with 40 additions and 40 deletions

View File

@@ -340,7 +340,7 @@ public:
{
if (!myView().IsNull())
{
myView()->SetProj(V3d_Xpos);
myView()->SetProj(V3d_Yneg);
}
}
@@ -362,7 +362,7 @@ public:
{
if (!myView().IsNull())
{
myView()->SetProj(V3d_Ypos);
myView()->SetProj(V3d_Xneg);
}
}
@@ -373,7 +373,7 @@ public:
{
if (!myView().IsNull())
{
myView()->SetProj(V3d_Xneg);
myView()->SetProj(V3d_Ypos);
}
}
@@ -384,7 +384,7 @@ public:
{
if (!myView().IsNull())
{
myView()->SetProj(V3d_Yneg);
myView()->SetProj(V3d_Xpos);
}
}