Search found 2060 matches
- Fri Jan 22, 2021 5:51 pm
- Forum: Help on using FreeCAD
- Topic: Extrude text
- Replies: 8
- Views: 174
Re: Extrude text
Try setting Reversed property to true.
- Sun Jan 17, 2021 6:57 pm
- Forum: Help on using FreeCAD
- Topic: [Fixed] can't export STL
- Replies: 4
- Views: 105
Re: can't export STL
Try creating the mesh from the Mesh Design workbench, and then export the mesh object from that same workbench menu.
- Sat Jan 16, 2021 5:14 pm
- Forum: Help on using FreeCAD
- Topic: Notes in a Sketch
- Replies: 6
- Views: 244
Re: Notes in a Sketch
Not in the sketch as far as I know.CrashedAgain wrote: ↑Fri Jan 15, 2021 10:00 pmExcellent!
Exactly what I wanted to know.....
Thank You
One more thing: If/when the "Notes" property is added, is there a way to display it in the sketch (like an annotation)?
- Fri Jan 15, 2021 7:56 pm
- Forum: Help on using FreeCAD
- Topic: Notes in a Sketch
- Replies: 6
- Views: 244
Re: Notes in a Sketch
Requires 0.19 or later.
In the python console enter:
In the python console enter:
Code: Select all
sk = App.ActiveDocument.Sketch #replace .Sketch with actual name of the sketch
sk.addProperty("App::PropertyStringList","Notes") #then modify Notes property to include your notes using the property editor
- Tue Dec 22, 2020 4:39 pm
- Forum: Help on using FreeCAD
- Topic: Check Geometry: Shell Not Connected
- Replies: 10
- Views: 327
Re: Check Geometry: Shell Not Connected
I prefer to attach the sketch to the edge, in this case the helix (or copy), rather than on of the planes when doing a sweep. I would try centering the triangle in the sketch, and then attaching the sketch to the path, probably using normal to edge.
- Sat Dec 19, 2020 5:16 pm
- Forum: Help on using FreeCAD
- Topic: Segfault when updating the radius of a Sketch on a SubtractiveLoft
- Replies: 10
- Views: 304
Re: Segfault when updating the radius of a Sketch on a SubtractiveLoft
I get this in the report view on loading the file: Your FreeCAD probably hasn't Abdullah's latest Sketcher changes. That must have been it. I updated to the latest version and now I'm not getting that error message. OS: Windows 10 (10.0) Word size of OS: 64-bit Word size of FreeCAD: 64-bit Version:...
- Thu Dec 17, 2020 10:59 pm
- Forum: Help on using FreeCAD
- Topic: Segfault when updating the radius of a Sketch on a SubtractiveLoft
- Replies: 10
- Views: 304
Re: Segfault when updating the radius of a Sketch on a SubtractiveLoft
I get this in the report view on loading the file: XML Attribute: "id" not found SketchObject::onChanged(): Unmanaged change of Constraint Property results in invalid constraint indices OS: Windows 10 (10.0) Word size of OS: 64-bit Word size of FreeCAD: 64-bit Version: 0.19.23074 (Git) Build type: R...
- Sat Dec 12, 2020 10:55 pm
- Forum: Help on using FreeCAD
- Topic: how to perform boolean operations on an imported STL?
- Replies: 6
- Views: 4072
Re: how to perform boolean operations on an imported STL?
I am using version 0.18 believed to be the latest I imported a part (stl file about 1mbyte) tried to cut a hole in it (rectangular) , did not work. next I converted the stl mesh (create shape from mesh) and then converted it to solid, converted my cube to solid too, then tried to cut (subtract), it...
- Sat Dec 12, 2020 10:48 pm
- Forum: Help on using FreeCAD
- Topic: How to rename DynamicData property?
- Replies: 5
- Views: 204
Re: How to rename DynamicData property?
You'd have to delete and create a new one.
- Wed Dec 09, 2020 11:18 pm
- Forum: Help on using FreeCAD
- Topic: Editing a MESH (solid)
- Replies: 19
- Views: 665
Re: Editing a MESH (solid)
Check the mesh with the Tools -> Analyze and repair tool to see if it has some issues. if it does have issues it can cause the boolean subtraction to fail.