hello, guys..when we count a list of points, will the vb remenber the coordinates of those points or just remember the number of the points?
example of introduction of scripting..
-----------------------
sub runscript(byval pts as list (of on3dpoint), byval gs as integer)
dim grid as new arraylist()
dim i as integer
dim j as integer
for i =0 to pts.count()-1 step gs
dim row as new list(of on3dpoint)
for j=i to i + gs - 1
dim pt as on3dpoint
pt=pts(j)
row.add(pt)
next
grid.add(row)
next
--------------------------
I dont understand how the row and grid looks like, or how they works with coordinates of points,could someone explain this very bisic question for me? Lets say pts=(0,0,0),(0,1,0),(1,0,0),(1,1,0) gs=2
Thanks so much..
Tags: