EgtGeomKernel 1.6r6 :

- aggiunto calcolo BBox a CurveArc di tipo preciso.
This commit is contained in:
Dario Sassi
2016-05-22 17:04:09 +00:00
parent 9410063588
commit d1b306ec6d
2 changed files with 5 additions and 1 deletions
+5 -1
View File
@@ -727,7 +727,11 @@ CurveArc::GetBBox( const Frame3d& frRef, BBox3d& b3Ref, int nFlag) const
return false ;
// assegno il box nel riferimento
b3Ref.Reset() ;
ArcApproxer aAppr( LIN_TOL_APPROX, ANG_TOL_APPROX_DEG, false, *this) ;
double dLinTol = LIN_TOL_APPROX ;
double dAngTolDeg = ANG_TOL_APPROX_DEG ;
if ( ( nFlag & BBF_EXACT) != 0)
dLinTol = LIN_TOL_MIN ;
ArcApproxer aAppr( dLinTol, dAngTolDeg, false, *this) ;
double dU ;
Point3d ptPos ;
while ( aAppr.GetPoint( dU, ptPos)) {
BIN
View File
Binary file not shown.