Search found 12925 matches

by yorik
Wed May 05, 2010 3:31 pm
Forum: Help on using FreeCAD
Topic: Quotation in drawing module?
Replies: 13
Views: 5058

Re: Quotation in drawing module?

Ok, I think I have enough info. I'll extend that macro... Did you and Werner already think of the possibility to have parts of existing workbenches programmed in python? Would allow people like me to add more quickly a couple of buttons on the toolbars... Doing it would be pretty easy I suppose (jus...
by yorik
Wed May 05, 2010 12:53 pm
Forum: Help on using FreeCAD
Topic: exporting 3d part and importing 2d dxf
Replies: 12
Views: 3769

Re: exporting 3d part and importing 2d dxf

Is there a way to automatically convert all imported dxf files to surfaces to then extrude, in a simple two step method? (PRO/E style) I might be interested to do that... Can you describe a bit how it works in ProE? My understanding of what would be needed is basically that you would join all lines...
by yorik
Wed May 05, 2010 12:48 pm
Forum: Help on using FreeCAD
Topic: Quotation in drawing module?
Replies: 13
Views: 5058

Re: Quotation in drawing module?

Hi, The macro works half-way, I made a small correction here: # this macro inserts selected dimensions into an existing Drawing page import Drawing sel = Gui.Selection.getSelection() for obj in sel: if 'Dimline' in obj.PropertiesList: svg = obj.ViewObject.Proxy.getSVG() vdim = App.activeDocument().a...
by yorik
Tue May 04, 2010 12:47 pm
Forum: Help on using FreeCAD
Topic: Quotation in drawing module?
Replies: 13
Views: 5058

Re: Quotation in drawing module?

Ok, here is how it works: You can just paste this code in a macro, I think it should run fine too... # this macro inserts selected dimensions into an existing Drawing page import Drawing sel = Gui.Selection.getSelection() for obj in sel: if 'Dimline' in obj.PropertiesList: svg = obj.ViewObject.Proxy...
by yorik
Tue May 04, 2010 11:27 am
Forum: Help on using FreeCAD
Topic: Quotation in drawing module?
Replies: 13
Views: 5058

Re: Quotation in drawing module?

You mean dimension tools? Yes, the draft dimensions are still not supported in the drawing module. I already made a svg output for them, but still need to make the "glue" to have them inserted into the drawings. In the meantime, it is already possible to insert them manually with python, b...
by yorik
Mon May 03, 2010 3:41 pm
Forum: Help on using FreeCAD
Topic: Sketchflat problem
Replies: 6
Views: 2329

Re: Sketchflat problem

Hmm that's actually a very different topic. The sketcher module of freecad, which currently uses sketchflat, is made to work with complex objects, where a sketch is (or will be) only a starting part of a more complex thing. Importing a DXF file directly in freecad is made with the draft module, whic...
by yorik
Mon May 03, 2010 3:32 pm
Forum: Install / Compile
Topic: Compile on Ubuntu 9.10
Replies: 14
Views: 4480

Re: Compile on Ubuntu 9.10

It's under his avatar image
http://courira.ca/en/cad-on-linux
by yorik
Sun May 02, 2010 5:07 pm
Forum: Help on using FreeCAD
Topic: Are they the same?
Replies: 2
Views: 1445

Re: Are they the same?

Hi, I believe the result should then be the same as with the "Create a cylinder" tool. Yes, indeed. One thing one can always do is test the type of a shape like this (for ex. you have an object called "myCylinder"): obj = App.ActiveDocument.myCylinder obj.Shape.ShapeType It will ...
by yorik
Sun May 02, 2010 4:44 pm
Forum: Install / Compile
Topic: Compile on Ubuntu 9.10
Replies: 14
Views: 4480

Re: Compile on Ubuntu 9.10

Hi Normand,
Very interesting blog of yours... Subscribing right now!
Cheers
Yorik
by yorik
Fri Apr 30, 2010 11:13 pm
Forum: Wiki
Topic: wiki theme
Replies: 10
Views: 4805

wiki theme

I've been playing a bit with wiki theming, have a look at what I have now: (it's on my sourceforge wiki, did you know every sourceforge user has a wiki?) http://sourceforge.net/userapps/mediawiki/yorikvanhavre/index.php?title=Alt_Main_Page The idea is that only the sidebar and the homepage have tota...