correct dup z filter for traces
This commit is contained in:
parent
57f77d459b
commit
6bb35b9d11
2 changed files with 2 additions and 1 deletions
|
|
@ -22,6 +22,7 @@ Full docs @ https://docs.grid.space/projects/kiri-moto
|
|||
* CAM fix multi-part object import / grouping
|
||||
* CAM fix tracing nested polyline offset ordering
|
||||
* CAM refactor of contouring yields 2x - 20x speedup
|
||||
* CAM update traces to async slicing, fix use with flip
|
||||
|
||||
- refactor object/group storage model in Mesh:Tool
|
||||
- add omit pocket to rough and outline
|
||||
|
|
|
|||
|
|
@ -371,7 +371,7 @@ CAM.traces = async function(settings, widget, single) {
|
|||
continue;
|
||||
}
|
||||
// do not add duplicates
|
||||
if (traces[i].isEquivalent(poly) && dz < 1) {
|
||||
if (traces[i].isEquivalent(poly) && dz < 0.1) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue