Path: Adaptive - prepping the PR

This commit is contained in:
kreso-t
2018-09-08 16:17:31 +02:00
committed by wmayer
parent 6db02838c3
commit 43ee740ef7
5 changed files with 102 additions and 6 deletions

View File

@@ -1,3 +1,26 @@
# /**************************************************************************
# * Copyright (c) Kresimir Tusek (kresimir.tusek@gmail.com) 2018 *
# * This file is part of the FreeCAD CAx development system. *
# * *
# * This library is free software; you can redistribute it and/or *
# * modify it under the terms of the GNU Library General Public *
# * License as published by the Free Software Foundation; either *
# * version 2 of the License, or (at your option) any later version. *
# * *
# * This library is distributed in the hope that it will be useful, *
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
# * GNU Library General Public License for more details. *
# * *
# * You should have received a copy of the GNU Library General Public *
# * License along with this library; see the file COPYING.LIB. If not, *
# * write to the Free Software Foundation, Inc., 59 Temple Place, *
# * Suite 330, Boston, MA 02111-1307, USA *
# * *
# ***************************************************************************/
import PathScripts.PathOp as PathOp
import Path
import FreeCAD
@@ -360,7 +383,7 @@ class PathAdaptive(PathOp.ObjectOp):
obj.addProperty("App::PropertyLength", "HelixDiameterLimit", "Adaptive", "Limit helix entry diameter, if limit larger than tool diameter or 0, tool diameter is used")
def opSetDefaultValues(self, obj):
def opSetDefaultValues(self, obj, job):
obj.Side="Inside"
obj.OperationType = "Clearing"
obj.Tolerance = 0.1

View File

@@ -1,3 +1,24 @@
# /**************************************************************************
# * Copyright (c) Kresimir Tusek (kresimir.tusek@gmail.com) 2018 *
# * This file is part of the FreeCAD CAx development system. *
# * *
# * This library is free software; you can redistribute it and/or *
# * modify it under the terms of the GNU Library General Public *
# * License as published by the Free Software Foundation; either *
# * version 2 of the License, or (at your option) any later version. *
# * *
# * This library is distributed in the hope that it will be useful, *
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
# * GNU Library General Public License for more details. *
# * *
# * You should have received a copy of the GNU Library General Public *
# * License along with this library; see the file COPYING.LIB. If not, *
# * write to the Free Software Foundation, Inc., 59 Temple Place, *
# * Suite 330, Boston, MA 02111-1307, USA *
# * *
# ***************************************************************************/
import FreeCAD
import FreeCADGui
import PathScripts.PathLog as PathLog