Hi,
It is almost complete, but I just realized we are still missing a change.
And the PR fails compiling on my Manjaro PC.
So we need some more work on this tomorrow.
Search found 2129 matches
- Mon Aug 08, 2022 4:36 pm
- Forum: Developers corner
- Topic: Blend Curve / Surface integration project
- Replies: 11
- Views: 897
- Mon Aug 08, 2022 1:00 pm
- Forum: Python scripting and macros
- Topic: Difference between Edges and OrderedEdges (Vertexes - OrderedVertexes)
- Replies: 5
- Views: 274
Re: Difference between Edges and OrderedEdges (Vertexes - OrderedVertexes)
Take a cylinder face. It is built from a rectangle wire (4 edges and 4 vertexes), wrapped around a cylinder surface. The 2 opposite edges get fused into a single edge (the seam edge). And the 4 vertexes get fused into 2 vertexes. OrderedEdges and OrderedVertexes include the edges and vertexes that w...
- Sat Aug 06, 2022 9:18 pm
- Forum: Python scripting and macros
- Topic: curveOnSurface
- Replies: 3
- Views: 284
Re: curveOnSurface
I don't know much about placement either, but I reached the same conclusion as yours.
- Sat Aug 06, 2022 3:54 pm
- Forum: Help on using FreeCAD
- Topic: pcurve and other FreeCAD concepts.
- Replies: 6
- Views: 337
Re: pcurve and other FreeCAD concepts.
I think the only thing that OCCT does slightly different from others, is separating the knot sequence into 2 lists (of equal length) : - knots is the list of unique knots (= not repeated) - multiplicities (integers) is the list that represent the number of repetition of each knot. So, a knot sequenc...
- Fri Aug 05, 2022 5:58 am
- Forum: Python scripting and macros
- Topic: curveOnSurface
- Replies: 3
- Views: 284
Re: curveOnSurface
so face.curveOnSurface(edge) maps the edge on the surface on which face lies More precisely, or maybe because english is not my native language, I would say that face.curveOnSurface(edge) returns the 2D representation of edge on face, if it already exist, otherwise, one has to project edge on face ...
- Wed Aug 03, 2022 9:21 pm
- Forum: Help on using FreeCAD
- Topic: Curves workbench
- Replies: 1314
- Views: 212718
- Wed Aug 03, 2022 5:40 pm
- Forum: Help on using FreeCAD
- Topic: Curves workbench
- Replies: 1314
- Views: 212718
Re: Curves workbench
I'm using the Flatten Face tool and sometimes it ignores some edges without warning. In the example file flattening 'Face4' with 4 edges results in an open 2 edged shape. I tried to locate and fix by myself in the python script but it seems to originate deeper. Out of reach for me. I suspect Open C...
- Wed Aug 03, 2022 4:57 pm
- Forum: Help on using FreeCAD
- Topic: Curves workbench
- Replies: 1314
- Views: 212718
- Sat Jul 30, 2022 4:10 pm
- Forum: Python scripting and macros
- Topic: "Project on Surface" using Scripting.
- Replies: 22
- Views: 1408
Re: "Project on Surface" using Scripting.
Or you can build all the ruled surfaces that join the 2 offset letters, to close the solid.
- Sat Jul 30, 2022 12:03 pm
- Forum: Python scripting and macros
- Topic: "Project on Surface" using Scripting.
- Replies: 22
- Views: 1408
Re: "Project on Surface" using Scripting.
Code: Select all
help(FreeCAD.BoundBox.isInside)