orbingol / NURBS-Python

Object-oriented pure Python B-Spline and NURBS library
https://onurraufbingol.com/NURBS-Python/
MIT License
633 stars 156 forks source link

Is possible to create a surface between splines #122

Open efirvida opened 3 years ago

efirvida commented 3 years ago

Hi team, i want to model wind turbine blade and I'm wondering if I can model with this module.

The simplified process of creating a blade is. 1- read text file with x/y cartesian coordinates 2- do some transformation. 3 - move it in the Z Axis and join all points with a spline to create and airfoil section of the blade. 4- After putting some airfoil what I need is to create the surface that join all the airfoil sections.

Can i do this? Thanks in advance

LorenzSLH commented 3 years ago

i don't know if you have resolved that issue by now, but i have a similar problem when coming to airfoils. You can easily created a closed NURB curve by wrapping the ctrlpts. When then extrude the curve along e.g. the z-axis you can use both contours to create a surface. Command for that construct.construct_surface(). You can have a look at my surface and contour in my thread: #128

best regards