Search found 6222 matches

by onekk
Wed Apr 10, 2024 6:03 am
Forum: Python scripting and macros
Topic: Sketcher workbench scripts.
Replies: 5
Views: 494

Re: Sketcher workbench scripts.

It may depend on what workflow you have in mind, to modify an existing Sketch or to start from scratch a new Sketch. In a new sketch it would be more easy to create two segments and add the constraints later, maybe with a dedicated button that place the "common point" placed in the middle ...
by onekk
Wed Apr 10, 2024 5:38 am
Forum: Help on using FreeCAD
Topic: (SOLVED) Freecad appimage on ghostbsd?
Replies: 6
Views: 399

Re: (SOLVED) Freecad appimage on ghostbsd?

Due to library differences *BSD is using a sort of Linux emulation layer that convert Linux API calls to *BSD calls. I don't know if it is a simply translation layer it is more similar to a Virtual Machine. The result is that as example low level things like hardware drivers are very complicated to ...
by onekk
Tue Apr 09, 2024 5:36 pm
Forum: Open discussion
Topic: Merge lattice WB as a tool in PD
Replies: 21
Views: 1523

Re: Merge lattice WB as a tool in PD

The point probably is not to integrated a whole WB in FreeCAD but to have useful tools already present in Core. Expecially those that are time consuming to be implemented in Python. It is another matter how to decide what are mature enough to be inserted and what are useful to have. Kind regards Car...
by onekk
Mon Apr 08, 2024 7:50 pm
Forum: Open discussion
Topic: Being seriously frustrated with FreeCAD
Replies: 51
Views: 10059

Re: Being seriously frustrated with FreeCAD

It depends on what you intend when you say "history tree". IMHO, what you depict as "history tree" is not possible in many FreeCAD WB like PartDesign, where order of operation is crucial I see this very hard to implement the possibility to move freely Features around the "tr...
by onekk
Mon Apr 08, 2024 5:18 am
Forum: Help on using FreeCAD
Topic: What is this shadow on a pad?
Replies: 16
Views: 1078

Re: What is this shadow on a pad?

Hello.

Without a file is hard to tell.

Kind regards.

Carlo D.
by onekk
Mon Apr 08, 2024 5:14 am
Forum: Help on using FreeCAD
Topic: Fully configurable parts
Replies: 9
Views: 745

Re: Fully configurable parts

There are many way to create a collection of reusable parts and adapt to new uses. But FreeCAD could not do "mind reading". You could take an element, a subassembly or whatever you want to call or configure this reusable object and modify it enough to fit its new use. Probably the most fle...
by onekk
Sun Apr 07, 2024 7:10 pm
Forum: Python scripting and macros
Topic: B-Spline from a number of points
Replies: 2
Views: 342

Re: B-Spline from a number of points

BSPline from a number of points? - approximate - interpolate There are around some posts speaking of Python methods, you assign the TopoShapes to a Part.Shape. For editing them as far as I know there is something in Curves WB and something in PartDesign if I remember correctly. About technical detai...
by onekk
Sun Apr 07, 2024 8:38 am
Forum: Python scripting and macros
Topic: Auto-reload modified script using external editor
Replies: 3
Views: 373

Re: Auto-reload modified script using external editor

Hello, probably there is no way to avoid dialog box asking if you want to reload the script. IMHO is a safety meaure, as you could have made modifications with internal editor and loose the changes. About auto execution after changes, better not for security reason as malicious code should be inject...
by onekk
Sat Apr 06, 2024 8:10 am
Forum: Help on using FreeCAD
Topic: pocket does not cut through additive pipe
Replies: 12
Views: 823

Re: pocket does not cut through additive pipe

the 0.001 mm thing seems one of the known workaround for two possible "race conditions" that sometimes puzzles the geometric kernel: - coplanar objects - seams (the little line that you see in cylinders, cones and others curved surfaces) they have some geometric reasons (probably due to l ...
by onekk
Fri Apr 05, 2024 5:53 am
Forum: Help on using FreeCAD
Topic: pocket does not cut through additive pipe
Replies: 12
Views: 823

Re: pocket does not cut through additive pipe

... If I am not mistaken, you experienced the same problem as me. Can you please provide your version info? It is not a version problem, or a bug. It is that: - mixing PartDesign with Part WB has to be done carefully. - "Refine" = True has to be used carefully as it introduced some peculi...