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!
you can import point from txt with this:
Then use wherever you want, like this sample:
You must to group by Z and use the groups to build your curves. Yor must to give more information about the output taht you want, a graph would be good. Greetings