diff --git a/polygon/PolyLine.cpp b/polygon/PolyLine.cpp index bd018853a2..5eacc6e031 100644 --- a/polygon/PolyLine.cpp +++ b/polygon/PolyLine.cpp @@ -450,15 +450,15 @@ CPolyLine* CPolyLine::Fillet( unsigned int aRadius, unsigned int aSegments ) double lenb = sqrt( (double) (xb * xb + yb * yb) ); double cosine = ( xa * xb + ya * yb ) / ( lena * lenb ); - unsigned int radius = aRadius; + double radius = aRadius; double denom = sqrt( 2.0 / ( 1 + cosine ) - 1 ); // Limit rounding distance to one half of an edge if( 0.5 * lena * denom < radius ) - radius = (unsigned int) (0.5 * lena * denom); + radius = 0.5 * lena * denom; if( 0.5 * lenb * denom < radius ) - radius = (unsigned int) (0.5 * lenb * denom); + radius = 0.5 * lenb * denom; // Calculate fillet arc absolute center point (xc, yx) double k = radius / sqrt( .5 * ( 1 - cosine ) ); @@ -507,14 +507,11 @@ CPolyLine* CPolyLine::Fillet( unsigned int aRadius, unsigned int aSegments ) else newPoly->AppendCorner( (int) nx, (int) ny ); - unsigned int nVertices = 0; - for( unsigned int j = 0; j < segments; j++ ) { nx = xc + cos( startAngle + (j + 1) * deltaAngle ) * radius + 0.5; ny = yc - sin( startAngle + (j + 1) * deltaAngle ) * radius + 0.5; newPoly->AppendCorner( (int) nx, (int) ny ); - nVertices++; } }