How I can get some specific data out of NURBS solids drawn in Rhino in a .txt Format? Data like coordinates of control Points, their respective weights and knot vectors.
Finding from the earlier question, I can get some data out of NURBS curves and surfaces.
How you convert the list of information into a text file will depend on how you want to use it as I do not believe there is any standard format for a nurbs data set.
If you want it to be then exported to another software, you will need to format the values according to that software’s standard.
In my previous project, I write the values line by line in a custom format.
This format was then read into matlab line by line with ** as a way of separating element types and using the str2num function.
I am unable to share the code that I used though.