Search found 12 matches

by ncadoret
Thu Dec 07, 2023 1:10 pm
Forum: Users Showcase
Topic: FreeCAD Nodes (renamed from fc_nodes)
Replies: 191
Views: 275741

Re: FreeCAD Nodes (renamed from fc_nodes)

Hi, Thanks, I feel stupid but I still can't make it work : Python 3.10.13 | packaged by conda-forge | (main, Oct 26 2023, 18:01:37) [MSC v.1935 64 bit (AMD64)] on win32 Type 'help', 'copyright', 'credits' or 'license' for more information. >>> # Gui.runCommand('Std_Workbench',15) >>> # Gui.runComma...
by ncadoret
Thu Dec 07, 2023 8:32 am
Forum: Users Showcase
Topic: FreeCAD Nodes (renamed from fc_nodes)
Replies: 191
Views: 275741

Re: FreeCAD Nodes (renamed from fc_nodes)

Hi, can you explain exactly how you install it ? I have same problem than you, codelink is installed but v0.01 (no ideas why it's not last version) and I have no idea about what to do next... Where I need to write the "import codelink.path_loader..." ? I think it really should be easiest ...
by ncadoret
Mon Nov 27, 2023 10:14 am
Forum: Users Showcase
Topic: FreeCAD Nodes (renamed from fc_nodes)
Replies: 191
Views: 275741

Re: FreeCAD Nodes (renamed from fc_nodes)

Ok with a bit of fiddling around I got it to work. For anybody who's wondering. I downloaded the latest dev branch at https://github.com/FreeCAD/FreeCAD-Bundle/releases/tag/weekly-builds then installed the codelink package in the corresponding folder. Thanks again for your work, will report if I get...
by ncadoret
Mon Nov 27, 2023 9:52 am
Forum: Users Showcase
Topic: FreeCAD Nodes (renamed from fc_nodes)
Replies: 191
Views: 275741

Re: FreeCAD Nodes (renamed from fc_nodes)

Whoops my bad, thought I updated to 0.21 already. Still, using the windows installer straight from the FreeCAD github page, I don't get PySide 5.15.8... OS: Windows 10 build 19045 Word size of FreeCAD: 64-bit Version: 0.21.1.33668 +26 (Git) Build type: Release Branch: (HEAD detached at 0.21.1) Hash:...
by ncadoret
Mon Nov 27, 2023 7:22 am
Forum: Users Showcase
Topic: FreeCAD Nodes (renamed from fc_nodes)
Replies: 191
Views: 275741

Re: FreeCAD Nodes (renamed from fc_nodes)

Greetings, I struggle with installing your package using pip on Windows. Could you maybe help me with a few instructions ? From command line, when I run pip install codelink I get Requirement already satisfied: codelink in c:\users\user\appdata\local\programs\python\python310\lib\site-packages (0.0....
by ncadoret
Wed Jul 05, 2023 8:05 am
Forum: UX/UI Design
Topic: Work on modern icon theme
Replies: 101
Views: 49490

Re: Work on modern icon theme

I for one love the color palette as I feel it's less of a visual strain and keeps the focus on the part being designed rather than the UI. Would there maybe be a way to offer the same icon pack with several color palette options ? No idea how practical and intensive that would be as I'm not a design...
by ncadoret
Thu Nov 24, 2022 2:18 pm
Forum: Users Showcase
Topic: FreeCAD Nodes (renamed from fc_nodes)
Replies: 191
Views: 275741

Re: FreeCAD Nodes (renamed from fc_nodes)

IT IS ALIVE!!! The new Voronoi on Solid node for FreeCAD Nodes is coming soon :shock: voronoi_on_sld.PNG Now you have my attention ! I am very interested in creating Voronoï type structures inside solids and was struggling to create a macro for it. I'm sure with that node I will be able to get the ...
by ncadoret
Wed Jun 01, 2022 11:25 am
Forum: Python scripting and macros
Topic: Troubles creating a porous structure
Replies: 10
Views: 1956

Re: Troubles creating a porous structure

Follow-up regarding the .removeSplitter() operation. It didn't change the result if I applied it directly to the ellipsoids and the script returned the following error if I tried to apply it after the cut operation: <class 'Part.OCCError'>: Bnd_Box is void I don't know what could cause this problem,...
by ncadoret
Tue May 31, 2022 7:11 am
Forum: Python scripting and macros
Topic: Troubles creating a porous structure
Replies: 10
Views: 1956

Re: Troubles creating a porous structure

edwilliams16 wrote: Mon May 30, 2022 10:19 pm The ellipsoid.Radius parameters are a bit strange. Radius1 is z, Radius2 is x and Radius3 is y!
Trust me, between that and the axis-angle orientation I had a lot of trouble creating the ellipsoids in the right place and orientation at first ahahah. It's all good now but it was a struggle.
by ncadoret
Tue May 31, 2022 7:08 am
Forum: Python scripting and macros
Topic: Troubles creating a porous structure
Replies: 10
Views: 1956

Re: Troubles creating a porous structure

It might work to fuse all the ellipsoids into a single fusion object, and then at the end cut that fusion object from the base material. Note there can also be issues with boolean operations where there are tangent faces or where seamlines overlap. I've tried that out at the beginning but it didn't...