Search found 3177 matches

by edwilliams16
Tue Apr 16, 2024 4:26 am
Forum: Help on using FreeCAD
Topic: Help making object solid - Solved (bad version of slicer)
Replies: 9
Views: 556

Re: Help making object solid

The video is about modifying an existing stl. You just want to make one. Create your body by padding a sketch. It is a solid. Select Body , go to the Mesh Workbench and "Create Mesh from shape". Select the created mesh, go to File|Export and export it as an stl. It will print as a solid. S...
by edwilliams16
Tue Apr 16, 2024 1:50 am
Forum: Help on using FreeCAD
Topic: Help making object solid - Solved (bad version of slicer)
Replies: 9
Views: 556

Re: Help making object solid

Body was created in FreeCAD (in Part Design WB, create body, create sketch). Tried to convert it to solid using several of the YouTube 'how to make solid' tutorials. No luck. If you just created a sketch inside a body - it is a 2D object, not a solid. You need to pad it to give it thickness. The fi...
by edwilliams16
Mon Apr 15, 2024 8:06 pm
Forum: Help on using FreeCAD
Topic: Mesh Remodel: Create coplanar points object
Replies: 7
Views: 439

Re: Mesh Remodel: Create coplanar points object

@racx Does Ed's suggestion fix the error? It works for me, of course. It seems it is numpy at issue >>> import numpy as np >>> v <Vertex object at 0x60000a588820> >>> np.array(v.Point) array([ 0.29561883, -1.97803175, 10. ]) >>> t0 =np.array(v.Point) >>> t0 is None False >>> t0 == None array([False...
by edwilliams16
Mon Apr 15, 2024 1:02 am
Forum: Help on using FreeCAD
Topic: When working with 2 documents, unexpected switch from one to the other
Replies: 45
Views: 4061

Re: When working with 2 documents, unexpected switch from one to the other

>>> from PySide import QtWidgets >>> >>> QtWidgets.QApplication.style() <PySide2.QtWidgets.QCommonStyle(0x60000286aa50, name = "macintosh") at 0x3399cfb80> >>> QtWidgets.QApplication.style().metaObject().className() 'QMacStyle' >>> is my default (broken) setup.
by edwilliams16
Sun Apr 14, 2024 8:10 pm
Forum: Help on using FreeCAD
Topic: Curves workbench
Replies: 1839
Views: 442247

Re: Curves workbench

Yes, there are these 3 parameters : https://github.com/tomate44/CurvesWB/blob/master/freecad/Curves/GeomInfo.py#L387 This worked nicely - thank you. But I was somewhat mystified that I had to add the GeomInfoFontSize parameter by hand. Your code appears to read it - how did it do that before I crea...
by edwilliams16
Sun Apr 14, 2024 7:15 pm
Forum: Help on using FreeCAD
Topic: Mesh Remodel: Create coplanar points object
Replies: 7
Views: 439

Re: Mesh Remodel: Create coplanar points object

I have been working with the Mesh Remodel workbench and have been getting an error when attempting to use the ‘Create coplanar points object’. Here is a simplified workflow: 1, Create a cylinder in Parts workbench by accepting the defaults. 2, Move to Mesh workbench and create a mesh with ‘create m...
by edwilliams16
Sat Apr 13, 2024 7:34 pm
Forum: Help on using FreeCAD
Topic: When working with 2 documents, unexpected switch from one to the other
Replies: 45
Views: 4061

Re: When working with 2 documents, unexpected switch from one to the other

chrisb wrote: Sat Apr 13, 2024 7:24 pm Does the old behaviour return when you switch the style sheet back to the default?
Unfortunately, it does.
by edwilliams16
Sat Apr 13, 2024 5:53 pm
Forum: Help on using FreeCAD
Topic: When working with 2 documents, unexpected switch from one to the other
Replies: 45
Views: 4061

Re: When working with 2 documents, unexpected switch from one to the other

Have you tried changing the overlay properties in Preferences? Or, disabling overlays? I think you are on to something. My normal configuration is out of the box: Screen Shot 2024-04-13 at 7.49.58 AM.png Changing the 'theme' to: Screen Shot 2024-04-13 at 7.48.47 AM.png and the bug goes away!
by edwilliams16
Sat Apr 13, 2024 5:39 pm
Forum: Help on using FreeCAD
Topic: When working with 2 documents, unexpected switch from one to the other
Replies: 45
Views: 4061

Re: When working with 2 documents, unexpected switch from one to the other

If it's reliably reproducible can you please start FreeCAD with the option --write-log and attach the file FreeCAD.log? Maybe it contains some information about the reason for switching the document. Is there a way to increase the logging level? There's nothing here about my activity generating the...
by edwilliams16
Sat Apr 13, 2024 9:30 am
Forum: Help on using FreeCAD
Topic: Tools|Customize segfaulting
Replies: 5
Views: 499

Re: Tools|Customize segfaulting

If I start FreeCAD and then click Tools|Customize from the menu, it SEGfaults. Can you somehow get a callstack to see where it crashes? 0.21.2 now also segfaults! How old is your 0.21? Have you observed this crash earlier or did this happen all the sudden? Do you use a self-compiled version or one ...