I have a script that takes a collection of points and then one by one calls a recursive subroutine. For each point the subroutine produces an array of points. This array is then added to another array called AllPoints. My VB script then feeds this output into a Point parameter and this is where I get an error. I realize that the Point parameter is expecting points but I would think that it would also accept an array of arrays of points.
this is what I get as output from my VBscript when I feed it two points.
System.Collections.Generic.List'1
[RMA.opeNURBS.On3dPoint]
System.Collections.Generic.List'1
[RMA.opeNURBS.On3dPoint]
Any suggestions on what to do. I can't flatten the list because i eventually what to draw separate curves through each set of points.
Thanks.
Tags: