Search found 4 matches

by timo.kinnunen
Wed Nov 09, 2022 11:33 am
Forum: Open discussion
Topic: Solver Message: Where to put it?
Replies: 17
Views: 1763

Re: Solver Message: Where to put it?

My first preference is for D so that the information would always be visible without getting in the way. Option A could also work, although I think the info should replace the "Solver Messages" header text itself when that section is in the collapsed state. Also, is there an easy way to ge...
by timo.kinnunen
Tue May 31, 2022 7:00 pm
Forum: Python scripting and macros
Topic: Progressive Slow Down Adding Constraints + Geometry in Sketcher using Python
Replies: 6
Views: 1274

Re: Progressive Slow Down Adding Constraints + Geometry in Sketcher using Python

However, it would be interesting to be able to: 1. Disable the solver 2. Add lots of constraints / geometry with a script 3. Re-enable and run the resolver once Is this possible, as I feel the slow down is probably due to the solver running every time the script adds a constraint? Number 2 is possi...
by timo.kinnunen
Thu May 19, 2022 9:49 am
Forum: Python scripting and macros
Topic: How can I modify a FreeCAD obeject's "Name"?
Replies: 4
Views: 894

Re: How can I modify a FreeCAD obeject's "Name"?

It's possible, just not directly. You could do it by: # 1. Creating a temporary Document and creating in it a new object with the desired name. # 2. Reading back the resulting name to get a sanitized name we know we are allowed to use. # 3. Creating a shallow copy of the original object. We do this ...
by timo.kinnunen
Thu May 12, 2022 11:45 am
Forum: Python scripting and macros
Topic: [solved] Goal seek macro
Replies: 29
Views: 5351

Re: [Help] Goal seek macro

But why should (unmantained? and probably broken) another workbench mess with the work of an unrelated macro? Is it possible that there is some deeper problem that just gets exposed with the combination of mods i have here? retr3d contains its own copy of the multiprocessing module, but this copy i...