From a5732e46c93a59a3b19c13ea363bc17a0b05483f Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Fri, 4 Nov 2016 08:10:57 +0000 Subject: [PATCH] EgtGeomKernel : - piccola correzione a Vector3d::GetRotation. --- Vector3d.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Vector3d.cpp b/Vector3d.cpp index 55ea880..c50a26b 100644 --- a/Vector3d.cpp +++ b/Vector3d.cpp @@ -483,6 +483,9 @@ Vector3d::GetRotation( const Vector3d& vtEnd, const Vector3d& vtAx, double& dAng return true ; } // altrimenti angolo impossibile - else + else { + dAngDeg = 0 ; + bDet = false ; return false ; + } }