dessin.svg 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <svg xmlns="http://www.w3.org/2000/svg" width="600" height="300" >
  3. <circle cx="50" cy="50" r="30" stroke="black" stroke-width="3" fill="lightgreen"/>
  4. <text x="45" y="55" font-size="18"> 1 </text>
  5. <circle cx="150" cy="50" r="30" stroke="black" stroke-width="3" fill="lightgreen"/>
  6. <text x="145" y="55" font-size="18"> 2 </text>
  7. <circle cx="250" cy="50" r="30" stroke="black" stroke-width="3" fill="lightgreen"/>
  8. <text x="245" y="55" font-size="18"> 3 </text>
  9. <circle cx="350" cy="50" r="30" stroke="black" stroke-width="3" fill="lightgreen"/>
  10. <text x="345" y="55" font-size="18"> 4 </text>
  11. <circle cx="450" cy="50" r="30" stroke="black" stroke-width="3" fill="lightgreen"/>
  12. <text x="445" y="55" font-size="18"> 5 </text>
  13. <circle cx="250" cy="150" r="30" stroke="black" stroke-width="3" fill="lightgreen"/>
  14. <text x="245" y="155" font-size="18"> 6 </text>
  15. <circle cx="350" cy="250" r="30" stroke="black" stroke-width="3" fill="lightgreen"/>
  16. <text x="345" y="255" font-size="18"> 7 </text>
  17. <circle cx="350" cy="150" r="30" stroke="black" stroke-width="3" fill="lightgreen"/>
  18. <text x="345" y="155" font-size="18"> 8 </text>
  19. <defs>
  20. <marker id='head' orient="auto" markerWidth='4' markerHeight='8' refX='0.2' refY='3'>
  21. <path d='M0,0 V6 L3,3 Z' />
  22. </marker>
  23. </defs>
  24. <path marker-end='url(#head)' stroke-width='3' stroke='black' d='M80,50 L110,50' />
  25. <path marker-end='url(#head)' stroke-width='3' stroke='black' d='M180,50 L210,50' />
  26. <path marker-end='url(#head)' stroke-width='3' stroke='black' d='M280,50 L310,50' />
  27. <path marker-end='url(#head)' stroke-width='3' stroke='black' d='M380,50 L410,50' />
  28. <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'
  29. d=' M150,80 C150,150 210,150 210,150 ' />
  30. <path marker-end='url(#head)' stroke-width='3' stroke='black' d='M280,150 L310,150' />
  31. <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'
  32. d=' M380,150 C380,150 450,150 450,90 ' />
  33. <path marker-end='url(#head)' stroke-width='3' fill='none' stroke='black'
  34. d=' M250,180 C250,250 310,250 310,250 ' />
  35. </svg>