Moving horiz and vert feed into the toolload object.

This commit is contained in:
brad
2016-03-24 15:42:14 -05:00
committed by Yorik van Havre
parent f1a4a5bcc4
commit 2f43b2a28d
4 changed files with 9 additions and 132 deletions

View File

@@ -44,6 +44,9 @@ class LoadTool:
obj.addProperty("App::PropertyFloat", "SpindleSpeed", "Tool","The speed of the cutting spindle in RPM")
obj.addProperty("App::PropertyEnumeration", "SpindleDir", "Tool","Direction of spindle rotation")
obj.SpindleDir = ['Forward','Reverse']
obj.addProperty("App::PropertySpeed", "VertFeed", "Feed",translate("Path","Feed rate for vertical moves in Z"))
obj.addProperty("App::PropertySpeed", "HorizFeed", "Feed",translate("Path","Feed rate for horizontal moves"))
obj.Proxy = self
mode = 2
obj.setEditorMode('Placement',mode)