Search found 6222 matches

by onekk
Sat Apr 13, 2024 6:56 pm
Forum: Open discussion
Topic: Ads on Youtube goes more and more anoying, where to go?
Replies: 10
Views: 844

Re: Ads on Youtube goes more and more anoying, where to go?

Video are IMHO not very taylored to learn something for a countless reason said many times. Most YT video are simply "click baits" to gain money with advertisements this explain many things. Encouraging "bad practices" like inserting video on forum messages IMHO is not a great st...
by onekk
Sat Apr 13, 2024 6:40 pm
Forum: Open discussion
Topic: Merging Fasteners and Gears in Part wb?
Replies: 28
Views: 2486

Re: Merging Fasteners and Gears in Part wb?

Thoughts on merging fasteners and gears in core Part Wb as single tools, each with its own taskbox letting you select the type and configure it? Untitled.png Better to leave Part mostly as is. IMHO being a direct interface to OCCT kernel, having less overhead on it is more logical. Some logic has t...
by onekk
Sat Apr 13, 2024 12:03 pm
Forum: Python scripting and macros
Topic: Creating rotation animation with macro
Replies: 8
Views: 789

Re: Creating rotation animation with macro

I have an update for this issue. And honestly I just stumbled on to it! Anyway maybe someone will read this post and gain some in site. ... What is the point? Your first post was fairly verbose and full of rants from LLM bots that are not tailored to make correct deductions as they are statistical ...
by onekk
Sat Apr 13, 2024 7:12 am
Forum: Python scripting and macros
Topic: Fusing results in an infinitely negative bounding box
Replies: 5
Views: 565

Re: Fusing results in an infinitely negative bounding box

... There is pretty poor documentation about how to use Python to create parts ... There is plenty of documentation about it, if you search in right places. In the FreeCAD wiki there are many pages about Scripting. In FreeCAD forum under Python Scripting a quick search will give you some hints for ...
by onekk
Fri Apr 12, 2024 5:31 am
Forum: Python scripting and macros
Topic: How to use App::PropertyColorList
Replies: 7
Views: 580

Re: How to use App::PropertyColorList

... Where can I check the naming conventions? Thanks.. There is not in my knowledge a document, but a quick look will tell you that FreeCAD use CamelCase convention in many places exposed to the user, probably Draft is a little exception, and follows more closely the Python way. Kind regards Carlo D.
by onekk
Fri Apr 12, 2024 5:25 am
Forum: Help on using FreeCAD
Topic: Can we access object placement in one bunch from a spreadsheet and vice versa?
Replies: 11
Views: 767

Re: Can we access object placement in one bunch from a spreadsheet and vice versa?

If things became complicated, I have found that scripting things has many advantages. - you could leverage Python power instead of "expression mini language" - an error could be amended in seconds, just correct and relaunch script and you are done, if you save different version of a file y...
by onekk
Fri Apr 12, 2024 5:13 am
Forum: Python scripting and macros
Topic: Fusing results in an infinitely negative bounding box
Replies: 5
Views: 565

Re: Fusing results in an infinitely negative bounding box

0.20 is quite outdated, try to use an 0.21.2 AppImage, that should work better. Probably you have a problem with the fusion. You code IMHO is very involuted, some remarks: - Better to make explicit parts an fuse them, fuse could accept a list of objects, but they must intersect between them, so if y...
by onekk
Thu Apr 11, 2024 7:51 am
Forum: Python scripting and macros
Topic: using packages installed with pip on Freecad
Replies: 2
Views: 350

Re: using packages installed with pip on Freecad

What flavour of FreeCAD do you use?

AppImages and Flatpacks are different from an installation from sources or using a distribution package.

Kind regards

Carlo D.
by onekk
Thu Apr 11, 2024 5:34 am
Forum: Help on using FreeCAD
Topic: (clarified) Unexpected colors in dev?
Replies: 39
Views: 2688

Re: (clarified) Unexpected colors in dev?

wmayer wrote: Wed Apr 10, 2024 1:16 pm ...
It is always a pleasure to read yours PR, even if I barely read C++ code. Sometimes I find things that could help me to understand FreeCAD better.

Thanks for you hard work on FreeCAD.
by onekk
Wed Apr 10, 2024 6:13 am
Forum: Python scripting and macros
Topic: Recorded macro doesn't work
Replies: 2
Views: 345

Re: Recorded macro doesn't work

Hi all. I'm a programmer and want to make extensive use of macros to build objects and do other CAD activities. The easiest way I have found to do this is copying the Console Python output and make the necessary changes. ... From a programmer's point of view, what is output by the Python Console is...