Fixed Deburr op and v-bit template to communicate properly

This commit is contained in:
Markus Lampert
2019-10-23 23:24:10 -07:00
parent 75272f20a5
commit 7f4ad01bd2
2 changed files with 1 additions and 1 deletions

View File

@@ -671,7 +671,7 @@ class PathData:
print("tag[%d]" % i)
if not i in fromObj.Disabled:
dist = self.baseWire.distToShape(Part.Vertex(FreeCAD.Vector(pos.x, pos.y, self.minZ)))
if dist[0] < W:
if True or dist[0] < W:
print("tag[%d/%d]: (%.2f, %.2f, %.2f)" % (i, j, pos.x, pos.y, self.minZ))
at = dist[1][0][0]
tags.append(Tag(j, at.x, at.y, W, H, A, R, True))