Removed extra arg from call in hull.scad

This commit is contained in:
Revar Desmera 2019-11-17 18:15:57 -08:00
parent 23b76fd49a
commit 2b95e67cda
2 changed files with 2 additions and 2 deletions

View file

@ -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)

View file

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