Hello everyone,
I save my FEM results as VTK files, these files include data such as Points, Variables values, mesh type etc.
I have been trying to get a vector graphic (like SVG) to display smooth and nice results.
I tried ParaView, but I think they do not support vector graphics in recent versions.
I also tried to write a Python code for this purpose using vtk and matplotlib libraries. It works almost fine, but when I want to plot the mesh too, there are problems.
I used Triangulation from matplotlib.tri, but it only supports triangles mesh, while my mesh type is 9-node quadrilaterals.
So, the question is, what is the best way to get SVG image of a VTK file?
Thanks,
Masoud