Curves workbench

Post here for help on using FreeCAD's graphical user interface (GUI).
Forum rules
and Helpful information
IMPORTANT: Please click here and read this first, before asking for help

Also, be nice to others! Read the FreeCAD code of conduct!
User avatar
hammax
Veteran
Posts: 1991
Joined: Thu Jan 19, 2017 5:03 pm
Location: Ammersee DE

Re: Curves workbench

Post by hammax »

...first try => it looks a little bit weird


FC.17.13354
FC.17.13354
CurvesWB_Pipeshell_2.PNG (38.84 KiB) Viewed 2514 times
User avatar
hammax
Veteran
Posts: 1991
Joined: Thu Jan 19, 2017 5:03 pm
Location: Ammersee DE

Re: Curves workbench

Post by hammax »

...PipeShell apparently does not like the "Slot-Feature" in sketcher.
I used an actual example out of the german forum. (flattened pipe)
Using only circles in sketcher the feature works as expected and parameters can be explored.
Sorry for the bad start.

Diffusor.PNG
Diffusor.PNG (54.48 KiB) Viewed 2447 times
Attachments
Diffusor.FCStd
FC.17.13354
(13.31 KiB) Downloaded 97 times
User avatar
hammax
Veteran
Posts: 1991
Joined: Thu Jan 19, 2017 5:03 pm
Location: Ammersee DE

Re: Curves workbench

Post by hammax »

...and it works with BSplines .
Is it also usable with open profiles?

Hull_PipeShell.PNG
Hull_PipeShell.PNG (37.7 KiB) Viewed 2443 times
Attachments
Hull_PipeShell.FCStd
FC.17.13354
(46.05 KiB) Downloaded 134 times
User avatar
Chris_G
Veteran
Posts: 2598
Joined: Tue Dec 31, 2013 4:10 pm
Location: France
Contact:

Re: Curves workbench

Post by Chris_G »

hammax wrote: Mon Mar 05, 2018 6:55 am Is it also usable with open profiles?
It is usable with open profiles.
It is a "Part.Sweep" with more options.
So it should be able to do everything Part.Sweep can do.
I don't know if this tool will be really useful, but at least, it offers an easy way to explore the different options.
User avatar
Stéphane Combet
Posts: 43
Joined: Mon Feb 05, 2018 5:46 pm
Contact:

Re: Curves workbench

Post by Stéphane Combet »

Hello,
Wow, what an incredible work here!

I've installed this WB.
But: I am new in FreeCAD world, and I've seen screenshots here and there with other amazing curved stuff, and I wonder : do I need this WB to my project? Or is there something simpler in my case? And, I am with v16, I heard v17 does more with curves but are there commun points/differences with your great Curves WB?

Thank you!
(my project: molds for a personnal RC sailplane, https://forum.freecadweb.org/viewtopic.php?f=12&t=26757)
User avatar
Chris_G
Veteran
Posts: 2598
Joined: Tue Dec 31, 2013 4:10 pm
Location: France
Contact:

Re: Curves workbench

Post by Chris_G »

Stéphane Combet wrote: Fri Apr 27, 2018 12:46 pm I've installed this WB.
But: I am new in FreeCAD world, and I've seen screenshots here and there with other amazing curved stuff, and I wonder : do I need this WB to my project? Or is there something simpler in my case? And, I am with v16, I heard v17 does more with curves but are there commun points/differences with your great Curves WB?
Hello,
The workbench is not tested with 0.16, and I know some tools won't work with this version.
Stéphane Combet wrote: Fri Apr 27, 2018 12:46 pm (my project: molds for a personnal RC sailplane, https://forum.freecadweb.org/viewtopic.php?f=12&t=26757)
I'll go there for further discussion.
UR_
Veteran
Posts: 1355
Joined: Tue Jan 03, 2017 8:42 pm

Re: Curves workbench

Post by UR_ »

Just played a little bit with "sketch on surface", immediately coming up with a question.

How should a sketch looks like, to fit onto a cone?

sketches on cone.png
sketches on cone.png (45.35 KiB) Viewed 2209 times
outline didn't fit to cone's face. Seem should be a straight line, shouldn't? :shock:


file:
WrapOnCone.FCStd
(12.43 KiB) Downloaded 79 times
User avatar
Chris_G
Veteran
Posts: 2598
Joined: Tue Dec 31, 2013 4:10 pm
Location: France
Contact:

Re: Curves workbench

Post by Chris_G »

UR_ wrote: Sat Jun 23, 2018 8:25 pm Just played a little bit with "sketch on surface", immediately coming up with a question.
How should a sketch looks like, to fit onto a cone?
outline didn't fit to cone's face. Seem should be a straight line, shouldn't? :shock:
Hi,
Every surface in FC (and I suppose this is the same in every CAD software) has a rectangle topology: its parametric space is a rectangle that goes from (u0,v0) to (u1,v1).

Code: Select all

Cone.Shape.Face1.ParameterRange
>>> (0.0, 6.283185307179586, 0.0, 107.70329614269008)
So the easiest way to use the Sketch_on_surface tool is to create a surrounding square (as blue construction geometry) and draw inside it.
Then set to True the properties "Construction Bounds" and "Scale" of the Sketch_on_surface object.
sos.jpg
sos.jpg (35.3 KiB) Viewed 2174 times
In your cone example, you'll see that the upper edge of the bounding square degenerates to a point ( the tip of the cone ).
Attachments
WrapOnCone-2.FCStd
(14.07 KiB) Downloaded 80 times
UR_
Veteran
Posts: 1355
Joined: Tue Jan 03, 2017 8:42 pm

Re: Curves workbench

Post by UR_ »

Oh, yes, i see.
Many thanks for clarification!

Unfortunately its a non conformal transformation :( , even if surface is developable.
Jee-Bee
Veteran
Posts: 2566
Joined: Tue Jun 16, 2015 10:32 am
Location: Netherlands

Re: Curves workbench

Post by Jee-Bee »

Chris_G wrote: Sun Jun 24, 2018 8:18 am Every surface in FC (and I suppose this is the same in every CAD software) has a rectangle topology: its parametric space is a rectangle that goes from (u0,v0) to (u1,v1).

Code: Select all

Cone.Shape.Face1.ParameterRange
>>> (0.0, 6.283185307179586, 0.0, 107.70329614269008)
Some support also spherical/polar coordinate systems. this can probably change the results of that kind of curves...
Last edited by Jee-Bee on Sun Jun 24, 2018 6:23 pm, edited 2 times in total.
Post Reply