When exporting paths from
inkscape to
blender the resulting file can be very large. We can reduce the file size by removing unused decimal zeros, eg “12.00000” would become “12”.
We can use regular expressions
notepad++ to do.
Open the
.pov file in
notepad++ and in the
Replace dialog box (Ctrl+H) select the Regular expression

In the text field
Find what: copy and paste the expression:
(\.(?:\d*[1-9])?)(0+)(,|>|;)
And in
Replace with::
\1\3
Pressing
Replace All clean it useless zeros code