From 0346b8a26695d1766319031d1955d85bdbc24c2a Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Mon, 13 Apr 2020 16:53:50 -0700 Subject: [PATCH] Removed leftover p= args from attachable() refactoring. --- shapes2d.scad | 4 ++-- version.scad | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/shapes2d.scad b/shapes2d.scad index 5ebd73e..dedeb37 100644 --- a/shapes2d.scad +++ b/shapes2d.scad @@ -1144,7 +1144,7 @@ module supershape(step=0.5,m1=4,m2=undef,n1,n2=undef,n3=undef,a=1,b=undef, r=und // mask2d_roundover(r=10, inset=2); module mask2d_roundover(r, d, excess, inset=0, anchor=CENTER,spin=0) { path = mask2d_roundover(r=r,d=d,excess=excess,inset=inset); - attachable(anchor,spin, two_d=true, path=path, p=path) { + attachable(anchor,spin, two_d=true, path=path) { polygon(path); children(); } @@ -1293,7 +1293,7 @@ function mask2d_chamfer(x, y, edge, angle=45, excess, inset=0, anchor=CENTER,spi // mask2d_rabbet(size=10); module mask2d_rabbet(size, excess, anchor=CENTER,spin=0) { path = mask2d_rabbet(size=size, excess=excess); - attachable(anchor,spin, two_d=true, path=path, extent=false, p=path) { + attachable(anchor,spin, two_d=true, path=path, extent=false) { polygon(path); children(); } diff --git a/version.scad b/version.scad index cdf9087..be41c86 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,265]; +BOSL_VERSION = [2,0,266]; // Section: BOSL Library Version Functions