algorithmic modeling for Rhino
Hi all,
I am scripting a VB node that pulls data from Excel regarding the X,Y,Z coordinate of a point. I am ok with my scripting from Excel, but I want to have the list output of the node be a list of points objects, not separate outputs for X,Y,Z coordinate. Is there a way to combine these three numbers internally in a VB node and have the outputs be points?
Preemptive thanks!
Tags:
'X_list, Y_list, Z_list: lists of coordinates.
Dim pts as new list(of point3d)
For i as int32 = 0 to X_list.Count -1
pts.add( new point3d(X_list(i), Y_list(i), Z_list(i)) )
next
A = pts
Welcome to
Grasshopper
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
© 2024 Created by Scott Davidson. Powered by