Search found 306 matches

by Grub
Fri Apr 12, 2024 8:35 am
Forum: Open discussion
Topic: Merging Fasteners and Gears in Part wb?
Replies: 28
Views: 2364

Re: Merging Fasteners and Gears in Part wb?

Fasteners looks more like a library of screws and bolts than a real workshop. Gears should be one of the add-ons that can be installed via the addon manager (I doubt that an architect would use this module... And vice versa, a machining company would never use Arch...) Users should be able to instal...
by Grub
Wed Apr 10, 2024 6:25 am
Forum: Python scripting and macros
Topic: Sketcher workbench scripts.
Replies: 5
Views: 460

Re: Sketcher workbench scripts.

FreeCAD suffers from the absence of the quick centre point: - You need to create a line (3 clicks) - Create a point (2 clicks) - Select the line (1 click) - Select the point (1 click) - Click on the symmetrical constraint... (1 click) 8 clicks! You can use this macro: Create the line (3 clicks), sel...
by Grub
Tue Apr 02, 2024 10:54 am
Forum: Python scripting and macros
Topic: Custom GUI and formula-editor in widget possible?
Replies: 13
Views: 1419

Re: Custom GUI and formula-editor in widget possible?

Hi, so it works for normal "floats". So what's about "degrees"? I tried to change this code:... use the name of an existing attribute in the object's properties (in english): eg 'Radius', 'Height', 'Angle' Capture d’écran (172).png FreeCADGui.ExpressionBinding(w).bind(cylinder,&...
by Grub
Thu Mar 28, 2024 8:34 am
Forum: UX/UI Design
Topic: Pie Menu Improved
Replies: 113
Views: 102301

Re: Pie Menu Improved

cadcam wrote: Tue Mar 26, 2024 10:42 am
There's a subtle difference between the 2 versions - is that what you want?

Current concentric shape:
Capture d’écran (167).png
Capture d’écran (167).png (90.28 KiB) Viewed 198 times
Concentric shape with offset by 1/2 space for each outer rings
Capture d’écran (166).png
Capture d’écran (166).png (88.78 KiB) Viewed 198 times

if so, I could change that for the next version
by Grub
Tue Mar 19, 2024 3:54 pm
Forum: Install / Compile
Topic: [FreeCAD Link] Customize workbench menu
Replies: 2
Views: 268

Re: [FreeCAD Link] Customize workbench menu

Hi

Right clic on list of workbench
Capture d’écran (152).png
Capture d’écran (152).png (39.72 KiB) Viewed 251 times
https://github.com/realthunder/FreeCAD/issues/942
by Grub
Tue Mar 19, 2024 3:01 pm
Forum: Forum français
Topic: question de débutant
Replies: 4
Views: 372

Re: question de débutant

En zoomant et déformant ton esquisse on y trouve un "trou" :
Capture d’écran (151).png
Capture d’écran (151).png (41.15 KiB) Viewed 356 times
by Grub
Sun Mar 17, 2024 9:43 am
Forum: UX/UI Design
Topic: Pie Menu Improved
Replies: 113
Views: 102301

Re: Pie Menu Improved

Previous problem is fixed. I noticed that when assigning a custom shortcut the pressed key (letter/symbol) is substituted by its UPPERCASE, for example pressing SHIFT+a gives SHIFT+A which is inoffensive but pressing SHIFT+< gives SHIFT+> and the problem is that when you press SHIFT+< the menu is n...
by Grub
Sat Mar 16, 2024 7:56 pm
Forum: UX/UI Design
Topic: Pie Menu Improved
Replies: 113
Views: 102301

Re: Pie Menu Improved

Hi, I noticed that after updating the associated WB if you open the PieMenu settings dialog again OR you opening again the specific WB settigs again (example: update Sketcher, switch to PartDesign, update PartDesign, switch to Sketcher, the previous change of associated WB is resetted, close & ...
by Grub
Sat Mar 16, 2024 4:38 pm
Forum: UX/UI Design
Topic: Pie Menu Improved
Replies: 113
Views: 102301

Re: Pie Menu Improved

How to open a custom pie menu depending of the workbench? Ex. In part design open my part design pie menu In sketch open my sketch design pie In sheet metal workbench open my sheet metal custom pie menu The new version 1.4 includes this feature, so you can test it now by updating PieMenu (uninstall...
by Grub
Fri Mar 15, 2024 7:11 pm
Forum: Python scripting and macros
Topic: Icon issue, reusing a registered icon.
Replies: 2
Views: 313

Re: Icon issue, reusing a registered icon.

You need to set your icon like this : Icon7.setIcon(QtGui.QIcon(':/icons/PartDesign_Pad.svg')) FreeCad's icons path can be found with Tools > Customize > Macros > Pixmap Capture d’écran (150).png With this code, the icon is OK : toolbar1.setIconSize(QSize(sizeIconX, sizeIconY)) Gui.addIconPath(FreeC...