do not add brims to anchors

This commit is contained in:
Stewart Allen 2021-01-29 08:03:13 -05:00
commit f8ecd9f198
2 changed files with 8 additions and 0 deletions

View file

@ -330,11 +330,13 @@
let addto = start.down;
if (!addto) {
addto = newSlice(start.z - sliceHeight);
addto.belt = { };
addto.height = start.height;
addto.up = start;
start.down = addto;
slices.splice(0,0,addto);
}
addto.belt.anchor = true;
let z = addto.z;
let y = z - smin - (nozzleSize / 2);
let splat = BASE.newPolygon().add(wb.min.x, y, z).add(wb.max.x, y, z).setOpen();