EgtGeomKernel 2.7j2 :

- ricompilazione con Eigen 3.4.1.
This commit is contained in:
Dario Sassi
2025-10-10 15:55:54 +02:00
parent b64c747082
commit e16a2078fc
7 changed files with 11 additions and 7 deletions
+3 -3
View File
@@ -55,7 +55,7 @@ CurveByInterp::GetCurve( int nMethod, int nType)
if ( ! CalcBesselTangents())
return nullptr ;
}
else if( nType != CUBIC_BEZIERS_LONG){
else if ( nType != CUBIC_BEZIERS_LONG) {
if ( ! CalcAkimaTangents( nMethod == AKIMA_CORNER))
return nullptr ;
}
@@ -103,8 +103,8 @@ CurveByInterp::GetCurve( int nMethod, int nType)
return ::Release( pCrvCompo) ;
}
// se richieste curve di Bezier cubiche
if (nType == CUBIC_BEZIERS_LONG) {
// se richieste curve di Bezier cubiche (ottenute da interpolazione con Nurbs)
if ( nType == CUBIC_BEZIERS_LONG) {
// creo la curva composita
PtrOwner<ICurve> pCrv ;
pCrv.Set( InterpolatePointSetWithBezier( m_vPnt, EPS_SMALL)) ;