-
Notifications
You must be signed in to change notification settings - Fork 28
svgtoipe: Support for Arrowtips #19
Description
I've hacked together code for parsing and writing arrows in svg files. See this commit in my svg-markers branch.
Collecting and writing marker/arrow definitions seems to work. Still I am doing something wrong, as the arrows won't show when loaded with ipe release 7.2.6.
svgtoipe doesn't use the new stylesheet format. But as I understand it, the following fragments should suffice to produce arrowed paths
Within styesheets define the symbol:
<ipestyle> <symbol name="Arrow1Lend" xform="yes"> <path matrix="-0.8 0 0 -0.8 -10 0" stroke="0 0 0" filltest-markers="0 0 0" pen="1"> 0 0 m 5 -5 l -12.5 0 l 5 5 l h </path> </symbol> <ipestyle>
And later in the document use those symbol:
<path stroke="black" arror="Arrow1Lend" rarror="Arrow1Lend"> 81 130 m 120 130 l </path>
Could you help me to clarify that issue?