Search found 101 matches

by miniellipse
Fri Apr 05, 2019 10:19 pm
Forum: Help on using FreeCAD
Topic: pad problem
Replies: 7
Views: 736

Re: pad problem

You might want to update to the latest version here: https://github.com/FreeCAD/FreeCAD/releases/download/0.18/FreeCAD-0.18.16093.690774c-WIN-x64-RC4-installer.exe and then watch some basic tutorial videos on the Part Design Work Bench. Here is a link to some of them: https://www.youtube.com/channel...
by miniellipse
Thu Apr 04, 2019 6:23 pm
Forum: Help on using FreeCAD
Topic: oblique cone loft has a 'crack' in it but making it from Part WB does not?
Replies: 9
Views: 1443

Re: oblique cone loft has a 'crack' in it but making it from Part WB does not?

kisolre wrote: Thu Apr 04, 2019 10:15 am Found it :) You can not have two sections CLOSED loft. It overlaps over itself and makes 0 thickness solid.2sectionsClosedLoft.jpg

Thank you Kisolre! That's it. Too many little settings on commands that I do not know (yet). :D
by miniellipse
Thu Apr 04, 2019 7:12 am
Forum: Help on using FreeCAD
Topic: oblique cone loft has a 'crack' in it but making it from Part WB does not?
Replies: 9
Views: 1443

Re: oblique cone loft has a 'crack' in it but making it from Part WB does not?

Your FreeCAD version is very outdated. Please retry with the current 0.18. Here it works out of the box. I downloaded the latest osx version on my mac at home and it still has the same issue as described above. I will download the latest win version tomorrow and see if it makes a difference. thanks...
by miniellipse
Thu Apr 04, 2019 2:32 am
Forum: Python scripting and macros
Topic: is there a way to get a list of all the sketch constrain expressions in a fcad file?
Replies: 10
Views: 2042

Re: is there a way to get a list of all the sketch constrain expressions in a fcad file?

chrisb wrote: Wed Apr 03, 2019 11:57 pm In your next model you should go the other way round: Use a spreadsheet for your expressions and use them in the model. That way you can include the documentation in the file.
Yes, chrisB, that is why I’m new at this. In my first post at the top, that’s what I realized. 😉
by miniellipse
Wed Apr 03, 2019 9:54 pm
Forum: Python scripting and macros
Topic: is there a way to get a list of all the sketch constrain expressions in a fcad file?
Replies: 10
Views: 2042

Re: is there a way to get a list of all the sketch constrain expressions in a fcad file?

Something like that should work : for obj in Gui.ActiveDocument.Document.Objects: if obj.TypeId == 'Sketcher::SketchObject': # remove this line to see expressions for all objects print str(obj.Label) + " : " + str(obj.ExpressionEngine) HTH Too much information in the print output, but sti...
by miniellipse
Wed Apr 03, 2019 9:16 pm
Forum: Help on using FreeCAD
Topic: oblique cone loft has a 'crack' in it but making it from Part WB does not?
Replies: 9
Views: 1443

Re: oblique cone loft has a 'crack' in it but making it from Part WB does not?

Both answers fix the rendering but I cannot seem to make the NotOk Cone into a "solid"object that I can perform boolean operations with...for example, thin it with a 'thickness' operation from the bottom circular face. I've tried the 'refine', 'make solid from face', 'make solid from shell...
by miniellipse
Wed Apr 03, 2019 5:54 pm
Forum: Help on using FreeCAD
Topic: oblique cone loft has a 'crack' in it but making it from Part WB does not?
Replies: 9
Views: 1443

Re: oblique cone loft has a 'crack' in it but making it from Part WB does not?

meme2704 wrote: Wed Apr 03, 2019 5:42 pm Hi
At home, if I change "Create face = Faulse
the Loft not-OK works
Who would have known! Yes, it does work. It does not make sense to me but Thank you!
by miniellipse
Wed Apr 03, 2019 5:50 pm
Forum: Python scripting and macros
Topic: is there a way to get a list of all the sketch constrain expressions in a fcad file?
Replies: 10
Views: 2042

is there a way to get a list of all the sketch constrain expressions in a fcad file?

I have a file with over 20 expressions (sketch.constraint variables), and ideally I would like to document them so I understand my fcad drawing in the future. I should have done it using the spreadsheet in the first place but I didn't. :x I do not know python (yet) but if someone has a quick code sn...
by miniellipse
Wed Apr 03, 2019 5:29 pm
Forum: Help on using FreeCAD
Topic: oblique cone loft has a 'crack' in it but making it from Part WB does not?
Replies: 9
Views: 1443

oblique cone loft has a 'crack' in it but making it from Part WB does not?

This should be simple. I was trying to make an oblique cone and realized I was having similar problems to this earlier thread https://forum.freecadweb.org/viewtopic.php?t=20968 This earlier thread mentions that the circles may not be closed but MINE are (I'm pretty sure). I have attached my FCAD fil...
by miniellipse
Mon Apr 01, 2019 7:11 pm
Forum: Help on using FreeCAD
Topic: [v0.17] Dependency graph: Graphviz failed to create an image file
Replies: 36
Views: 7358

Re: [v0.17] Dependency graph: Graphviz failed to create an image file

You mean that it won't work anymore for any model, not only for one single FCStd document? [/quote] Ok. I rechecked things and the problem is only that one fcad file. Something in that file caused dot.exe to crash. I made some changes to that file and refreshed things, and now it works. Appreciate ...