EgtGeomKernel 2.4b3 :

- corretto GetMidDir di CurveComposite
- eliminati problemi con trigraph in x64.
This commit is contained in:
DarioS
2022-02-23 10:48:15 +01:00
parent f43951a9e2
commit cb882b9379
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1028,7 +1028,7 @@ CurveComposite::GetMidDir( Vector3d& vtDir) const
if ( ! GetLength( dLen) || ! GetParamAtLength( 0.5 * dLen, dMid))
return false ;
// calcolo la direzione
return ::GetTang( *this, 0.5 * m_CrvSmplS.size(), FROM_MINUS, vtDir) ;
return ::GetTang( *this, dMid, FROM_MINUS, vtDir) ;
}
//----------------------------------------------------------------------------