nikoschalikias / eggbotcode

Automatically exported from code.google.com/p/eggbotcode
0 stars 1 forks source link

same track order problem in hatch on text object in inkscape using eggbot_hatch.py #53

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?
i have explain in detail
i have draw abc text object in inkscape

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')

 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')

What version of the product are you using? On what operating system?
i am using eggbot_hatch.py extension in inkscape on Linux Os.

Additional information:

I have send four files in attachment please check it.
abc.svg ===>> content coordinate without svg
abc_withhatch.svg ===>> content with hatch 

and two eggbot_hatch.py and inx file

AND why we need create object to path in text object. is it possible hatch in 
text object without object to path inkscape.
Let me know solution. 

Original issue reported on code.google.com by chaudhar...@gmail.com on 25 May 2012 at 6:48

Attachments:

GoogleCodeExporter commented 8 years ago
>i want coordinate with hatch like [...]

I understand what you are requesting, but this is not a feature of the Hatch 
extension at present.  Can you please indicate the situation that the output 
order is causing a problem?

>AND why we need create object to path in text object.
> is it possible hatch in text object without object to path inkscape.

This extension is written to work on paths.  There is no straightforward way to 
extract the paths (that should be filled) from a text object from within the 
extension, except to convert it to paths first.    If you need to be able to 
edit the text subsequently, you should consider making a copy of the text 
object before converting it to paths. 

Original comment by windell@oskay.net on 25 May 2012 at 7:20

GoogleCodeExporter commented 8 years ago
I am just use inkscape editor for my custom application. in case i want to find 
coordinate in order in text with hatch.

it's more helpful if possible

Original comment by chaudhar...@gmail.com on 25 May 2012 at 12:23

GoogleCodeExporter commented 8 years ago
See also followup on the same issue that you posted about in the Evil Mad 
Scientist forums:

http://www.evilmadscientist.com/forum/viewtopic.php?showtopic=5851

Original comment by windell@oskay.net on 25 May 2012 at 4:52