I have a program that interpolates between different predefined geometries and outputs a CSV file with points defined by X Y Z columns. For instance:
1,5,0.2
3,4,0.2
1,5,0.3
3,4,0.3
I am trying to import that file into Rhino, and have any points with a common Z value connect by a _interpCRV In the order they are imported The end result is that I'll have similar shapes (like a circle) at different Z values. I will have to manipulate the geometry further after that, but I am having difficulty getting this first step started. Thanks in advance!