Search found 29 matches

by lorenz
Mon Feb 13, 2017 6:45 pm
Forum: Developers corner
Topic: Patch #2864: PathHelix x10 issue on "Step in Z" inputfield and "Step in Radius"
Replies: 4
Views: 1539

Re: Patch #2864: PathHelix x10 issue on "Step in Z" inputfield and "Step in Radius"

Should be fixed by git commit 8a4952044. I just made a pull request for this.

Turns out a locale independent solution is to use the UserString attribute of Quantity as input for Gui::InputFields setText() method.
by lorenz
Sat Jan 14, 2017 7:46 pm
Forum: Developers corner
Topic: Problem with Gui::InputField property "quantity" using python (and possible locale issue)
Replies: 3
Views: 1655

Problem with Gui::InputField property "quantity" using python (and possible locale issue)

Hi there, I am having trouble using the nice unit-aware Gui::InputField widget from python. I can query the "quantity" property just fine: >>> widget = ui.createWidget("Gui::InputField") >>> widget.setText("1 mm") >>> q = widget.property("quantity") >>> q 1 mm...
by lorenz
Sat Jan 14, 2017 4:09 pm
Forum: Path/CAM
Topic: Helix machining for circular holes
Replies: 70
Views: 16706

Re: Helix machining for circular holes

Thank you all for testing this!

Meanwhile I have also reworked the task panel a bit, it now also uses a QToolBox based layout to make it more consistent with the other Path operations.

I will submit a PR shortly, based on my commit f2faa5080.

Kind regards,
Lorenz
by lorenz
Fri Jan 06, 2017 12:27 pm
Forum: Path/CAM
Topic: Helix machining for circular holes
Replies: 70
Views: 16706

Re: Helix machining for circular holes

I was able to drop the requirement of scipy, see my commit 1edc151c5.

Maybe a windows user could test this before I submit another pull request?
by lorenz
Thu Jan 05, 2017 10:57 pm
Forum: Path/CAM
Topic: Helix machining for circular holes
Replies: 70
Views: 16706

Re: Helix machining for circular holes

Hello lorenz, Thank-you for this! On Win scipy is a real show stopper. With no opensource or even free Fortran compiler we have no good way to support this requirement. We do support numpy if this helps. If numpy is OK as a dependency (it seems, numerous FreeCAD scripts require it) I could probably...
by lorenz
Thu Jan 05, 2017 10:10 pm
Forum: Path/CAM
Topic: Helix machining for circular holes
Replies: 70
Views: 16706

Re: Helix machining for circular holes

wmayer has merged the PR but I think this needs some additional work. My biggest concern is that it adds a dependency to scipy which is pretty heavy. If it's not present, the operation will throw an error and not work at all. If the same functionality can't be done with occ, we should be looking fo...
by lorenz
Wed Jan 04, 2017 10:33 pm
Forum: Path/CAM
Topic: Helix machining for circular holes
Replies: 70
Views: 16706

Re: Helix machining for circular holes

If you decide to integrate it somewhere, please, do not call it drilling, that is a completely different operation.
by lorenz
Wed Jan 04, 2017 7:34 pm
Forum: Path/CAM
Topic: Helix machining for circular holes
Replies: 70
Views: 16706

Re: Helix machining for circular holes

And here is the resulting path simulated with camotics:
Screenshot_20170104_203313.png
Screenshot_20170104_203313.png (165.34 KiB) Viewed 2965 times
by lorenz
Wed Jan 04, 2017 7:27 pm
Forum: Path/CAM
Topic: Helix machining for circular holes
Replies: 70
Views: 16706

Helix machining for circular holes

I updated my code for machining circular holes with helicular paths (see also the old discussion ). I made a pull request for this, see https://github.com/FreeCAD/FreeCAD/pull/417 . Compared to earlier versions I removed the feature to automatically detect "counterbore" holes. Currently it...