So I have some 3d points generator that gives points like
{1,1,1}
{1,2,3}
{1,3,3}
{2,4,5}
{2,5,6}
{4,4,4}
I need to generate a smooth surface that would go thrue given points. How to do such thing?
BTW I know we can use a way shown in here to generate some surface that would be inside selected controll array of points but I need to generate a surface that passes thrue my controll array.