diff --git a/Tool.cpp b/Tool.cpp index 81e3d76..8c35e7f 100644 --- a/Tool.cpp +++ b/Tool.cpp @@ -76,7 +76,7 @@ Tool::SetStdTool( const string& sToolName, double dH, double dR, double dCornR, { //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////// Per test additivi ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - //return SetAdditiveTool( sToolName, dH, dR, dCornR, nToolNum) ; + return SetAdditiveTool( sToolName, dH, dR, dCornR, nToolNum) ; ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Impostazioni generali m_sName = sToolName ; diff --git a/VolZmapCreation.cpp b/VolZmapCreation.cpp index 11f6107..f2d2210 100644 --- a/VolZmapCreation.cpp +++ b/VolZmapCreation.cpp @@ -30,7 +30,7 @@ VolZmap::Create( const Point3d& ptO, double dLengthX, double dLengthY, double dL { ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////// Per test additivi ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - //return CreateEmptyMap( ptO, dLengthX, dLengthY, dLengthZ, dStep, bTriDex) ; + return CreateEmptyMap( ptO, dLengthX, dLengthY, dLengthZ, dStep, bTriDex) ; ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Controlli sull'ammissibilità delle dimensioni lineari del grezzo e del passo if ( dStep < EPS_SMALL || dLengthX < EPS_SMALL || dLengthY < EPS_SMALL || dLengthZ < EPS_SMALL) @@ -224,7 +224,7 @@ VolZmap::CreateFromFlatRegion( const ISurfFlatRegion& Surf, double dDimZ, double // Determino le intersezioni della retta con la regione CRVCVECTOR IntersectionResults ; - Surf.GetCurveClassification( GridLine, IntersectionResults) ; + Surf.GetCurveClassification( GridLine, EPS_SMALL, IntersectionResults) ; // Analizzo le parti in cui la retta è stata divisa int nPart = int( IntersectionResults.size()) ; @@ -331,7 +331,7 @@ VolZmap::CreateFromFlatRegion( const ISurfFlatRegion& Surf, double dDimZ, double // Determino le intersezioni della retta con la regione CRVCVECTOR IntersectionResults ; - Surf.GetCurveClassification( GridLine, IntersectionResults) ; + Surf.GetCurveClassification( GridLine, EPS_SMALL, IntersectionResults) ; // Analizzo le parti int nPart = int( IntersectionResults.size()) ;