EgtGeomKernel 1.6f3 :

- ApproxWithLines per Curve con possibilità di forzare un lato
- aggiunta MergeCurves a CurveComposite
- a PolyLine aggiunte RemoveAlignedPoints e ApproxOnSide
- corretta ExtendEndByLen e ExtendStartByLen per CurveArc quando è elica.
This commit is contained in:
Dario Sassi
2015-06-21 16:56:18 +00:00
parent af49f942d3
commit 82195db8cc
22 changed files with 470 additions and 153 deletions
+1 -1
View File
@@ -1858,7 +1858,7 @@ GdbExecutor::CurveCompoFromCurveApproximation( const STRVECTOR& vsParams)
return false ;
if ( nType == 1) { // con linee
PolyLine PL ;
if ( ! CrvLoc.Get()->ApproxWithLines( dLinTol, ANG_TOL_STD_DEG, PL) ||
if ( ! CrvLoc.Get()->ApproxWithLines( dLinTol, ANG_TOL_STD_DEG, ICurve::APL_STD, PL) ||
! pCC->FromPolyLine( PL))
return false ;
}