Renamed PathGeomOp to PathOpTools.

This commit is contained in:
Markus Lampert
2018-07-01 20:54:14 -07:00
parent 57ee12df60
commit c4c30fba9d
5 changed files with 50 additions and 50 deletions

View File

@@ -26,9 +26,9 @@ import FreeCAD
import Part
import Path
import PathScripts.PathEngraveBase as PathEngraveBase
import PathScripts.PathGeomOp as PathGeomOp
import PathScripts.PathLog as PathLog
import PathScripts.PathOp as PathOp
import PathScripts.PathOpTools as PathOpTools
import math
from PySide import QtCore
@@ -99,7 +99,7 @@ class ObjectChamfer(PathEngraveBase.ObjectOp):
for w in self.adjustWirePlacement(obj, base, basewires):
self.adjusted_basewires.append(w)
wire = PathGeomOp.offsetWire(w, base.Shape, offset, True)
wire = PathOpTools.offsetWire(w, base.Shape, offset, True)
if wire:
wires.append(wire)