sorry - it was in fact me that missed something (sub run script) I was referring to helper sub's created outside of run script in the additional subs and type definitions area.
I read somewhere that is referencing override is an optimization…
I agree,
I've just broken down started to learn vb (i see no sign of python coming back in the near term). Is Dirk's example really the only way to do this?
is there no way of making a copy statement?
inPt = ptList xxxx ?
- egads…
A bit tricky, but just like Dirk mentioned, you will need to create new point for each point on the list. The way you wrote it basically "reference" points from the old list rather than create "new" points and therefore any…
Rather than adding items from the old list to the new list, create a new point and use the old list item values to generate the new point data:
Dim ptList As New List (Of On3dPoint)
For i As Int32 = 0 To inPt.Count() - 1
Dim tPt As New…