1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-06 18:26:22 +03:00

0025331: Visualization - method V3d_View::ConvertWithProj returns incorrect value

This commit is contained in:
osa 2014-10-06 19:07:35 +04:00 committed by bugmaster
parent 4716247158
commit 3910bc6501

View File

@ -1896,9 +1896,15 @@ void V3d_View::ConvertWithProj(const Standard_Integer Xp,
aResult = myCamera->UnProject (gp_Pnt (anX, anY, aZ - 10.0));
Dx = X - aResult.X();
Dy = Y - aResult.Y();
Dz = Z - aResult.Z();
Graphic3d_Vec3d aNormDir;
aNormDir.x() = X - aResult.X();
aNormDir.y() = Y - aResult.Y();
aNormDir.z() = Z - aResult.Z();
aNormDir.Normalize();
Dx = aNormDir.x();
Dy = aNormDir.y();
Dz = aNormDir.z();
if( MyViewer->Grid()->IsActive() ) {
Graphic3d_Vertex aNewVrp = Compute (aVrp) ;