remove a message printed only for debug/test.

This commit is contained in:
jean-pierre charras 2020-07-01 18:14:49 +02:00
parent e26625fc99
commit 8d18f289c7
1 changed files with 2 additions and 1 deletions

View File

@ -236,10 +236,11 @@ bool ZONE_FILLER::Fill( const std::vector<ZONE_CONTAINER*>& aZones, bool aCheck
// insulated islands
for( auto idx : zone.m_islands )
{
#if 0 // for tests only
double metricMin = minArea * ( MM_PER_IU * MM_PER_IU );
double metricArea = poly.Outline( idx ).Area() * ( MM_PER_IU * MM_PER_IU );
std::cout << ( metricArea < metricMin ) << std::endl;
#endif
if( mode == ISLAND_REMOVAL_MODE::ALWAYS
|| ( mode == ISLAND_REMOVAL_MODE::AREA