diff --git a/include/geometry/shape_poly_set.h b/include/geometry/shape_poly_set.h index cd7af373e9..3f7382e4ea 100644 --- a/include/geometry/shape_poly_set.h +++ b/include/geometry/shape_poly_set.h @@ -885,10 +885,10 @@ class SHAPE_POLY_SET : public SHAPE * ROUND_ALL_CORNERS to round regardless of angles */ void Inflate( int aAmount, int aCircleSegmentsCount, - CORNER_STRATEGY aCornerStrategy = CHOP_ACUTE_CORNERS ); + CORNER_STRATEGY aCornerStrategy = ROUND_ALL_CORNERS ); void Deflate( int aAmount, int aCircleSegmentsCount, - CORNER_STRATEGY aCornerStrategy = CHOP_ACUTE_CORNERS ) + CORNER_STRATEGY aCornerStrategy = ROUND_ALL_CORNERS ) { Inflate( -aAmount, aCircleSegmentsCount, aCornerStrategy ); }