Hi,
I've come across a seemingly simple vb.net rhinoclass issue that I
cannot find an answer to.
the short version of this question is :
Input to the script is a list of curves : ByVal crvList As List(Of
OnCurve)
Then I am dividing each curve by equal length within a for loop. The
division of one curve works perfectly fine but the loop will not
advance past the first curve in the list.
For b As Integer = 0 To CrvNum
Dim crv As OnCurve = crvList(b)
--and then I have all of the dividing code here and I am drawing
new curves from the division points, I have this simplified right now
but it works
next
Is this not working because I am not declaring the OnCurve class
correctly, or because I am not pulling out the curve on crvList at b
correctly?
The long version of this question is :
http://groups.google.com/group/grasshopper3d/web/vbnet%20curves%20along%20divided%20curves_in%20progress.ghx
You can see that the output of my code is many of the same curve,
instead of one curve at each divided curve.
Thanks so much!
Mary