commented out a troublesome assert

This commit is contained in:
dickelbeck 2008-01-22 20:38:43 +00:00
parent e40903c16f
commit 11ddcd8e9b
1 changed files with 4 additions and 0 deletions

View File

@ -1117,7 +1117,11 @@ void CPolyLine::Hatch()
nloops++;
a += PCBU_PER_MIL/100;
} while( npts%2 != 0 && nloops < 3 );
/* DICK 1/22/08: this was firing repeatedly on me, needed to comment out to get
my work done:
wxASSERT( npts%2==0 ); // odd number of intersection points, error
*/
// sort points in order of descending x (if more than 2)
if( npts>2 )