How to create b-splines

That’s the question. How would I create a b-spline in studio, from this original post

@azqjanna said to use This video and what I want to accomplish, in my opinion, is a b-spline.

I felt that this needed its own post by the way.

1 Like

A spline function will usually take a value between 0 and 1 and return a point. To make a spline, you just need to make a function that splits this range into several curve functions. I.e. for a spline with 2 segments 0 to 0.5 would map to 0 to 1 in the first curve and 0.5 to 1 would map to 0 to 1 in the second curve.

Could I use that to also create a b-spline function, as that is the thing that I want to make.

That’s all I really want to make, a bspline that goes along an x amount of points

Yes, a spline function can used any curve as its segments.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.