From 2b95e67cda10df474b363e093719e3945a62e757 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Sun, 17 Nov 2019 18:15:57 -0800 Subject: [PATCH] Removed extra arg from call in hull.scad --- hull.scad | 2 +- version.scad | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hull.scad b/hull.scad index 97774e3..29e7ffe 100644 --- a/hull.scad +++ b/hull.scad @@ -163,7 +163,7 @@ function hull3d_faces(points) = // start with a single non-collinear triangle a = 0, b = 1, - c = first_noncollinear(a, b, points, 2) + c = first_noncollinear(a, b, points) ) (c == len(points))? _hull2d_collinear(points) : let( plane = plane3pt_indexed(points, a, b, c), d = _find_first_noncoplanar(plane, points, 3) diff --git a/version.scad b/version.scad index ad1e4a1..ede42f6 100644 --- a/version.scad +++ b/version.scad @@ -8,7 +8,7 @@ ////////////////////////////////////////////////////////////////////// -BOSL_VERSION = [2,0,40]; +BOSL_VERSION = [2,0,41]; // Section: BOSL Library Version Functions