Search found 2137 matches
- Wed Aug 17, 2022 1:36 pm
- Forum: Help on using FreeCAD
- Topic: Curves workbench
- Replies: 1323
- Views: 214936
Re: Curves workbench
Nice !
- Wed Aug 17, 2022 7:20 am
- Forum: Help on using FreeCAD
- Topic: Curves workbench
- Replies: 1323
- Views: 214936
Re: Curves workbench
Done.
Thanks for your contribution.
Thanks for your contribution.
- Tue Aug 16, 2022 3:42 pm
- Forum: Help on using FreeCAD
- Topic: Ruled surface between two spline curves with different control point spacing
- Replies: 10
- Views: 534
Re: Ruled surface between two spline curves with different control point spacing
However, I don't understand why a ruled surface has to follow that. A BSpline curve has 2 components : - an algebraic part, defined by the degree and the knot sequence, that define the "attracting power" of each control point. - a geometric part : the control points. To build a ruled surf...
- Tue Aug 16, 2022 8:45 am
- Forum: Help on using FreeCAD
- Topic: Ruled surface between two spline curves with different control point spacing
- Replies: 10
- Views: 534
Re: Ruled surface between two spline curves with different control point spacing
Is there a way to do something similar without altering the original curves? I am afraid it is not possible. You cannot change the internal parametrization of a curve, without changing its shape Therefore, here are some possible solutions : - approximate the existing curves, as proposed by edwillia...
- Sat Aug 13, 2022 10:46 am
- Forum: Help on using FreeCAD
- Topic: Curves workbench
- Replies: 1323
- Views: 214936
Re: Curves workbench
Thanks for the file.
I have pushed a fix.
I have pushed a fix.
- Sat Aug 13, 2022 10:10 am
- Forum: Help on using FreeCAD
- Topic: Curves workbench
- Replies: 1323
- Views: 214936
Re: Curves workbench
Would you have a test file please ?
- Thu Aug 11, 2022 9:51 am
- Forum: Python scripting and macros
- Topic: Can FeaturePython create subobjects or subelement?
- Replies: 1
- Views: 105
Re: Can FeaturePython create subobjects or subelement?
This should be the solution :
https://forum.freecadweb.org/viewtopic. ... 74#p472474
https://forum.freecadweb.org/viewtopic. ... 74#p472474
- Wed Aug 10, 2022 5:58 pm
- Forum: Help on using FreeCAD
- Topic: Scaled Draft Clone fails Part Check Geometry.
- Replies: 3
- Views: 241
Re: Scaled Draft Clone fails Part Check Geometry.
This should be fixed on a fresh buildTheMarkster wrote: ↑Wed Aug 10, 2022 3:44 pm I tried making an isocurve in Curves workbench, but failed.
- Mon Aug 08, 2022 4:36 pm
- Forum: Developers corner
- Topic: Blend Curve / Surface integration project
- Replies: 12
- Views: 1066
Re: Blend Curve / Surface integration project
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.
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.
- Mon Aug 08, 2022 1:00 pm
- Forum: Python scripting and macros
- Topic: Difference between Edges and OrderedEdges (Vertexes - OrderedVertexes)
- Replies: 5
- Views: 306
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...