generate mesh given list of point's coordinates
i have a list consist of 600 rows of vertex coordinates. Inserting them manually one by one in the xml def file is a pain in the back. does anyone know a faster/automatic way to do this.
regards
regards
Comments
thank you for your reply, I succeed interpolating list of points into a mesh using vtk libraries: vtkDelimitedTextReader (http://www.vtk.org/Wiki/VTK/Examples/Cxx/InfoVis/ReadDelimitedFile) and vtkDelaunay3D (http://www.vtk.org/Wiki/VTK/Examples/Cxx/Modelling/Delaunay3D). In case anyone wondering.