i just modified that module to be spreadable in the way you need it. (same control count and resolution for all meshes)
please have a look at the help patch to see that it works in theory. it doesn’t work yet in your patch. probably you need to resort the control points, resample here and there. the module expects the controls spread in that way:
(for all grids
(for all rows (V)
(for all columns (U)
(x, y, z))))
I tried to integrate it in my own project, but it doesn’t work.
At the moment the B-Spline connects my red reference dots in the wrong order (compare attachement):
object 1 point 1
object 2 point 1
object 3 point 1
The right order wopuld be:
object 1 point 1
object 1 point 2
object 1 point 3
It seems to me, that i have toresort the spread before i use it as the b-spline’s input. Can you please give my a hint how to do that?