From da1086b71b7820e19669c0607ac5380f477f1d06 Mon Sep 17 00:00:00 2001 From: Revar Desmera Date: Tue, 27 Aug 2019 03:40:49 -0700 Subject: [PATCH] Fix for vnf_add_face() --- geometry.scad | 6 ------ 1 file changed, 6 deletions(-) diff --git a/geometry.scad b/geometry.scad index 5f24657..b7492b7 100644 --- a/geometry.scad +++ b/geometry.scad @@ -1722,11 +1722,6 @@ function _vnf_get_vertices(vnf=[[],[]], pts, _i=0, _idxs=[]) = // vnf = The VNF structure to add a face to. // pts = The vertex points for the face. function vnf_add_face(vnf=[[],[]], pts) = - let(base=len(vnf[0])) [ - concat(vnf[0],pts), - concat(vnf[1],[[for (i=idx(pts)) i+base]]) - ]; - /* let( vvnf = vnf_get_vertex(vnf, pts), face = deduplicate(vvnf[0], closed=true), @@ -1735,7 +1730,6 @@ function vnf_add_face(vnf=[[],[]], pts) = vnf_vertices(vnf2), concat(vnf_faces(vnf2), len(face)>2? [face] : []) ]; - */ // Function: vnf_add_faces()