Quote by: chaudhary paresh i am using inkscape on linux platform. with the help of
eggbot_hatch.py i can do hatch with successfully.
First write abc string on inkscape and generate svg file.
After doing hatch on same string and also save svg file.
i have send two file in attachment.
With out hatch i got coordinate order like
M 362.45312,387.16467 ..... (a)
M 398.80469,387.25842 .... (b)
M 429.32031,375.1178 ..... (c)
With the hatch apply on same string i got coordinate order like
M 398.80469,387.25842 C ........... (b)
M 380.80089,363.89124 ............ (hatch on char 'b' )
M 362.45312,387.16467 .........................(a)
M 350.80089,387.05008 .................. (hatch on char 'a' )
M 429.32031,375.1178 ............... (c)
M 408.80089,384.11055 .............(hatch on char 'c' )
you can see all coordinate not in right format.
i want coordinate with hatch like
M 362.45312,387.16467 .........................(a)
M 350.80089,387.05008 .................. (hatch on char 'a' )
M 398.80469,387.25842 C ........... (b)
M 380.80089,363.89124 ............ (hatch on char 'b' )
M 429.32031,375.1178 ............... (c)
M 408.80089,384.11055 .............(hatch on char 'c' )