Hi there,
i’m trying to create a spline tangent to the hull and struggle to collect the points free in space.
Instead two curves are created by the one Interpolate modilue.
I have marked the points to collect for the curve in red circles below.
Having a look of the file with the points and the surface internalized would be a great start!
I cannot seem to understand what is happening in the rhino viewport (which points are to be used and which lines are the ones generated by the interpolate component) but you could start by using a merge component and flattening it so you can control the input order of those vertices.
Hi,
I have internalised the data and uploaded the definition.
Just tried to use a “merge” for data streams. The component works, but the 2 defined points are still not part of the curve. Instead still a second line is drawn, what I do not want…
Her’s the definition with the merge component.
After the upload I have flattended the result in the merge comp and I tried also flattening the input in the curve comp.
And I tried both at the same time.
I don’t understand why the points which I put in the right order into the merge component do not appear in the same order on the curve
Obviously I’m quite new to grashopper, though I have tried a few projects I still don’t understand the data mangement.
Your code is too complex for me to sort through this morning but I did find the brep of the hull (34K units from the origin?). Without referring to your code, can you describe in simple terms what you are trying to accomplish with this hull?
Yeah, I was just looking at your yacht merge component.gh file and can see the problem, without yet fully grasping the intent… The problem is that Merge can mix up the sequence of inputs (points in this case) due to data trees. You can replace it with Entwine and flatten the output:
For the benefit of others, here is the description you wrote:
Flatten integrates the 2 points far above the hull (those created with coordinates by sliders) but the curve should start at the hull and end at the other tangent while the 2 free points shall control the curvature
So I failed to put the points in the right order.
Sorting them by X Value would be an option?
I have baked the points and drawn the curve in red in rhino.
The curve is not faired yet of course, but the order of points is correct.
The points should be sorted by X-Value so the most aft point goes in first and so on.
It might work better to project these points to the centerline XZ plane, make the curve there, then project the curve back to the ruled reference surface.
Even better would be to project the angled plane intersection curves to the centerline XZ plane and work from there. As I did that, I realized we have been violating tangency with the intersection curves!
So I modified things to make sure that a nurbs curve using these points never strays from tangent. All the points are now inline with one or the other intersection curves. I modified the point positions and slightly changed the angle of the forward intersection plane to match the original interpolated curve. This looks better to me, what do you think?
Hi Joseph,
thank you very much for your deep thoughts into this.
I want the curve to point inboards above the tangent section curves, that’s why projecting the curve anywhere won’t work. It’s got to be threedimensional from the start.
But I will reuse that curve for the other curves on CL.
Nevertheless I will look into your file and see if I can learn new things from there.
It may not work for you to project the curve onto the white surface, I get that. However, where this curve is located in top view is a separate issue from how it is shaped in front view. Working on the CL as I did in version Oct26e.gh is the best way to guarantee that the curve is fair in front view.
For example, the white surface (below) is not vertical. It is constructed from rotated vertical lines.
Thanks Joseph,
the Curve shall be tangent to the hull in both directions and then above have an curvature inboards. Fore and aft different of course, therefore the tangents fore and aft had to be seperately adjustable Which they are.
So I will keep the curve as I thought initially.