Search found 372 matches

by danielfalck
Sat Jul 04, 2015 11:02 pm
Forum: Users Showcase
Topic: Screw Centrifugal Pump--FreeCAD to CFD
Replies: 4
Views: 7278

Re: Screw Centrifugal Pump--FreeCAD to CFD

Wow, that is very impressive! If this were google plus and there was a +10 button, I would be pressing it :)
It's great seeing FreeCAD used in another commercial project. Thanks for sharing that.
by danielfalck
Sat Jul 04, 2015 3:07 pm
Forum: Path/CAM
Topic: [Path] Compound objects copys its childs paths?
Replies: 21
Views: 5435

Re: [Path] Compound objects copys its childs paths?

When I pulled, I got a merge conflict in TaskDlgPathCompound.cpp, but I think I got that sorted out now. When I tried to build I got this error: In file included from /home/danfalck/cadcam/freecad/src/Mod/Path/App/FeatureCompound.cpp:33:0: /home/danfalck/cadcam/freecad/src/Mod/Path/App/FeatureCompou...
by danielfalck
Sat Jul 04, 2015 2:00 pm
Forum: Path/CAM
Topic: [Path] Compound objects copys its childs paths?
Replies: 21
Views: 5435

Re: [Path] Compound objects copys its childs paths?

Sorry for taking so long getting back with you. I will try this out today. Thanks for working on this.
by danielfalck
Fri Jul 03, 2015 6:30 pm
Forum: Developers corner
Topic: FreeCAD on SourceForge
Replies: 36
Views: 6647

Re: FreeCAD on SourceForge

I propose to change the name "FreeCAD_sf_master" to "FreeCAD". Dan, is it ok for you to adapt your script (until we don't need it anymore)? Yes, I can do that. Is it okay for me to change the name on github now? I just checked and I do have access to that. It seems that shouldn'...
by danielfalck
Sun Jun 28, 2015 10:13 pm
Forum: Path/CAM
Topic: [Path] Compound objects copys its childs paths?
Replies: 21
Views: 5435

Re: [Path] Compound objects copys its childs paths?

If so why does each Command, aka each single machine move (say G1 X100 Y100 Z5), have a placement attribute attached to it. It is clearly specified so in the API doc, but I fail to understand why. Replying to myself here: It is of course to be able the render the command in viewprovider without to ...
by danielfalck
Sun Jun 28, 2015 1:24 pm
Forum: Path/CAM
Topic: [Path] Compound objects copys its childs paths?
Replies: 21
Views: 5435

Re: [Path] Compound objects copys its childs paths?

I did find it a bit strange that pocket could make a toolchange independently of the Toolchange object. It isn't immediately obvious to the user that a tool has changed if it isn't shown in the tree. That reminded me that I wanted to set the toolnumber to read only inside the Properties box for the...
by danielfalck
Sat Jun 27, 2015 11:36 pm
Forum: Developers corner
Topic: FreeCAD on SourceForge
Replies: 36
Views: 6647

Re: FreeCAD on SourceForge

When we do abandon SF, let me know and I will shut off the git script that copies from SF to github. We might want to think about a different master area on github too- the one we set up there is called "FreeCAD_sf_master", which refers to a copy of the sourceforge repo in the name. Maybe ...
by danielfalck
Sat Jun 27, 2015 12:40 pm
Forum: Python scripting and macros
Topic: Access sketch constraints
Replies: 7
Views: 3055

Re: Access sketch constraints

Code: Select all

obj.getDatum(indexlist).Value
by danielfalck
Sat Jun 27, 2015 12:20 am
Forum: Python scripting and macros
Topic: Access sketch constraints
Replies: 7
Views: 3055

Re: Access sketch constraints

# rename a dimensional constraint,in a sketch, to something like 'edgedist' # select the sketch obj = Gui.Selection.getSelection()[0] i = 0 indexlist ='' for c in obj.Constraints: if c.Name =='edgedist': indexlist = i i +=1 #now you have the index number of the datum named 'edgelist' # to change it...
by danielfalck
Fri Jun 26, 2015 10:42 pm
Forum: Path/CAM
Topic: [Path] Compound objects copys its childs paths?
Replies: 21
Views: 5435

Re: [Path] Compound objects copys its childs paths?

Yes, go ahead and work on the compound script. It does need some help. I've been thinking a little about the usefulness of the compound object and have thought of a work around-to deal with common parameters with a group of toolpaths by creating objects that are inserted in sequence ahead of those t...