Fixed a pathological behaviour with small 2D imperfections in round2d

This commit is contained in:
Revar Desmera 2020-01-14 15:29:09 -08:00
parent fd98ef2eb4
commit 5a9d15c1a5
2 changed files with 2 additions and 2 deletions

View file

@ -2476,7 +2476,7 @@ module round2d(r, or, ir)
{ {
or = get_radius(r1=or, r=r, dflt=0); or = get_radius(r1=or, r=r, dflt=0);
ir = get_radius(r1=ir, r=r, dflt=0); ir = get_radius(r1=ir, r=r, dflt=0);
offset(or) offset(-ir-or) offset(delta=ir) children(); offset(or) offset(-ir-or) offset(delta=ir,chamfer=true) children();
} }

View file

@ -8,7 +8,7 @@
////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////
BOSL_VERSION = [2,0,83]; BOSL_VERSION = [2,0,84];
// Section: BOSL Library Version Functions // Section: BOSL Library Version Functions