This repo contains some Python functions that allows us to visualize objects on paraview (.vtk format)
Function 1: WritePython2Vtk: allows us to write a mesh from python to .vtk format.
ReadVtk2Python: read .vtk file of a surface generated by WritePython2Vtk.
How to run:
C,F,D,N=ReadVtkPython('Corrected.vtk')# coordinates, faces, data, Normal.
WritePython2Vtk('WriteCorrected.vtk', C, F, N, D, 'Cluster')