Search found 58 matches

by ralvejd
Wed Oct 30, 2013 11:33 pm
Forum: Open discussion
Topic: BOLTS Open Library of Technical Specifications
Replies: 305
Views: 100535

Re: BOLTS Open Library of Technical Specifications

Installed and tested, works well.
More detailed test on another day. Thanks for a great tool! :)

OS: Debian GNU/Linux 7.2 (wheezy)
Platform: 64-bit
Version: 0.13.
Python version: 2.7.3
Qt version: 4.8.2
Coin version: 3.1.3
SoQt version: 1.5.0
OCC version: 6.5.2
by ralvejd
Sat Oct 19, 2013 5:20 pm
Forum: Open discussion
Topic: Call for screenshots
Replies: 157
Views: 495859

Re: Call for screenshots

Feel free to use if any qualify, otherwise ignore them. A scaled down preview version http://www.ralvejd.se/post/FreeCAD/GantryRouter0.png Full size versions http://www.ralvejd.se/post/FreeCAD/GantryRouter1.png http://www.ralvejd.se/post/FreeCAD/GantryRouter2.png http://www.ralvejd.se/post/FreeCAD/G...
by ralvejd
Thu Sep 05, 2013 8:08 pm
Forum: Help on using FreeCAD
Topic: Help with creating macro for export to DXF and SVG.
Replies: 38
Views: 9445

Re: Help with creating macro for export to DXF and SVG.

Do you ralvejd by any chance have the possibility to test the package by installing it on fresh installed Debian system? Yes, a new installation of Debian is probably the solution. Right now I have no time for it. I will come back with results when I tested it. I spend most of my spare time on comp...
by ralvejd
Thu Sep 05, 2013 3:31 pm
Forum: Help on using FreeCAD
Topic: Help with creating macro for export to DXF and SVG.
Replies: 38
Views: 9445

Re: Help with creating macro for export to DXF and SVG.

Hi cblt2l Tested with the new deb file https://www.dropbox.com/s/jr62ej2trprb95k/freecad_0.14-git2434_amd64.deb And run triplus code Traceback (most recent call last): File "/home/isak/Dokument/9_Projekt/cad/FeeCAD/Macro/DxfSvg.FCMacro", line 303, in <module> import importDXF File "/u...
by ralvejd
Sun Sep 01, 2013 7:57 pm
Forum: Help on using FreeCAD
Topic: Help with creating macro for export to DXF and SVG.
Replies: 38
Views: 9445

Re: Help with creating macro for export to DXF and SVG.

Thanks for the reply Triplus, I was hoping to get all views in one dxf file.
by ralvejd
Sun Sep 01, 2013 5:25 pm
Forum: Help on using FreeCAD
Topic: Help with creating macro for export to DXF and SVG.
Replies: 38
Views: 9445

Re: Help with creating macro for export to DXF and SVG.

When I run the standalone dxf macro, then I get only one view. Is that right or should it be like the svg file?
Links to the output, svg and dxf.
http://www.ralvejd.se/post/FreeCAD/Box.dxf
http://www.ralvejd.se/post/FreeCAD/Box.svg
by ralvejd
Sun Sep 01, 2013 10:17 am
Forum: Help on using FreeCAD
Topic: Help with creating macro for export to DXF and SVG.
Replies: 38
Views: 9445

Re: Help with creating macro for export to DXF and SVG.

I have tried all of your suggestions. Turn off dxf export, then the macro functions without error. Delete the last paragraph of code, then the macro functions without error. Copy/past in Python console works? Yes, if I press [ENTER] twice. (With above mentioned code removed.) Some desperate tests: T...
by ralvejd
Sat Aug 31, 2013 9:05 pm
Forum: Help on using FreeCAD
Topic: Help with creating macro for export to DXF and SVG.
Replies: 38
Views: 9445

Re: Help with creating macro for export to DXF and SVG.

Interesting then i guess the whole macro should work too. Do you have the macro saved in a macro folder set in FreeCAD preferences? Macro path is set like this Edit ..Prefrerences ....General ......Macro ........Macro path /home/isak/Dokument/9_Projekt/cad/FeeCAD/Macro And the macro filename /home/...
by ralvejd
Sat Aug 31, 2013 4:40 pm
Forum: Help on using FreeCAD
Topic: Help with creating macro for export to DXF and SVG.
Replies: 38
Views: 9445

Re: Help with creating macro for export to DXF and SVG.

Does this work too:
Yes
P.S. What about selecting object in tree view and copy/paste the macro in the Python console.
No, the macro never completes, seem to stop on the last line.
by ralvejd
Sat Aug 31, 2013 3:15 pm
Forum: Help on using FreeCAD
Topic: Help with creating macro for export to DXF and SVG.
Replies: 38
Views: 9445

Re: Help with creating macro for export to DXF and SVG.

If you select object in tree view and run standalone macro or just copy/paste in Python console does it work: import os homepath = os.path.expanduser("~") selection = FreeCADGui.Selection.getSelection() obj = selection[0] filename = homepath + os.sep + obj.Name + ".dxf" import i...