-
From #4789 description:
@portnov Can you please shed some light how can we use the generated KV for interpolation? I cannot find a node that needs knotvector input and does interpolation of some sort. For sure I'm missing something. Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
portnov
Dec 8, 2022
Replies: 1 comment 2 replies
-
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
rendetto
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In Sverchok-Extra, there is a set of nodes for Nurbs curve interpolation and approximation:
I have no idea yet how useful they are in practice, so for now they are only in Sverchok-Extra.
They are based on the following idea: if you want to find a curve, which goes through the given point, you in fact have one equation. If you want this curve go through N given points, then you have N equations. Also you may want to specify not only points through which the curve goes, but some other conditions, for example, curve tangent vectors at some points.
So, if you want this curve to have M control points, and you have N conditions of some sort, you have a system of equations with M unknowns and …