bug fixes

This commit is contained in:
Adrian Mariano
2022-11-01 23:36:52 -04:00
parent 3d6c3fca89
commit f035df980a
2 changed files with 7 additions and 10 deletions

View File

@@ -1049,7 +1049,7 @@ function vnf_halfspace(plane, vnf, closed=true) =
assert(_valid_plane(plane), "Invalid plane")
assert(is_vnf(vnf), "Invalid vnf")
let(
inside = [for(x=vnf[0]) plane*[each x,-1] >= 0 ? 1 : 0],
inside = [for(x=vnf[0]) plane*[each x,-1] >= -EPSILON ? 1 : 0],
vertexmap = [0,each cumsum(inside)],
faces_edges_vertices = _vnfcut(plane, vnf[0],vertexmap,inside, vnf[1], last(vertexmap)),
newvert = concat(bselect(vnf[0],inside), faces_edges_vertices[2])