EgtGeomKernel :
- miglioria nella creazione dell'offset 3d - aggiunta messaggio di errore nel log per le ruled guided.
This commit is contained in:
+6
-2
@@ -6946,14 +6946,18 @@ SurfBezier::CreateByIsoParamSet( const ICurve* pCurve0, const ICurve* pCurve1, c
|
||||
if ( vIso[c].dParam0 < dLastParam0) {
|
||||
if ( dLastParam0 - vIso[c].dParam0 < EPS_ZERO)
|
||||
vIso[c].dParam0 = dLastParam0 + EPS_PARAM ;
|
||||
else
|
||||
else {
|
||||
LOG_DBG_ERR( GetEGkLogger(), "ERROR : Bezier Surface couldn't be created with the isocurves provided") ;
|
||||
return false ;
|
||||
}
|
||||
}
|
||||
if ( vIso[c].dParam1 < dLastParam1) {
|
||||
if ( dLastParam1 - vIso[c].dParam1 < EPS_ZERO)
|
||||
vIso[c].dParam1 = dLastParam1 + EPS_PARAM ;
|
||||
else
|
||||
else {
|
||||
LOG_DBG_ERR( GetEGkLogger(), "ERROR : Bezier Surface couldn't be created with the isocurves provided") ;
|
||||
return false ;
|
||||
}
|
||||
}
|
||||
dLastParam0 = vIso[c].dParam0 ;
|
||||
dLastParam1 = vIso[c].dParam1 ;
|
||||
|
||||
Reference in New Issue
Block a user