12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <svg xmlns="http://www.w3.org/2000/svg" width="700" height="450" >
- <g transform="translate(0,180)">
- <defs>
- <marker id='head' orient="auto" markerWidth='4' markerHeight='8' refX='0.2' refY='3'>
- <path d='M0,0 V6 L3,3 Z' />
- </marker>
- </defs>
- <circle cx="50" cy="50" r="30" stroke="black" stroke-width="2" fill="lightgreen"/>
- <circle cx="150" cy="50" r="30" stroke="black" stroke-width="2" fill="lightgreen"/>
- <circle cx="250" cy="50" r="30" stroke="black" stroke-width="2" fill="lightgreen"/>
- <circle cx="350" cy="50" r="30" stroke="black" stroke-width="2" fill="lightgreen"/>
- <circle cx="450" cy="50" r="30" stroke="black" stroke-width="2" fill="lightgreen"/>
- <circle cx="550" cy="50" r="30" stroke="black" stroke-width="2" fill="lightgreen"/>
- <path marker-end='url(#head)' stroke-width='2' stroke='black' d='M80,50 L110,50' />
- <path marker-end='url(#head)' stroke-width='2' stroke='black' d='M180,50 L210,50' />
- <path marker-end='url(#head)' stroke-width='2' stroke='black' d='M280,50 L310,50' />
- <path marker-end='url(#head)' stroke-width='2' stroke='black' d='M380,50 L410,50' />
- <path marker-end='url(#head)' stroke-width='2' stroke='black' d='M480,50 L510,50' />
- <circle cx="250" cy="-50" r="30" stroke="black" stroke-width="2" fill="lightgreen"/>
- <circle cx="350" cy="-50" r="30" stroke="black" stroke-width="2" fill="lightgreen"/>
- <path marker-end='url(#head)' stroke-width='2' fill='none' stroke='black'
- d=' M150,20 C150,-50 210,-50 210,-50 ' />
- <path marker-end='url(#head)' stroke-width='2' stroke='black' d='M280,-50 L310,-50' />
- <path marker-end='url(#head)' stroke-width='2' fill='none' stroke='black'
- d=' M380,-50 C380,-50 450,-50 450,10 ' />
- <circle cx="250" cy="150" r="30" stroke="black" stroke-width="2" fill="lightgreen"/>
- <circle cx="550" cy="150" r="30" stroke="black" stroke-width="2" fill="lightgreen"/>
- <path marker-end='url(#head)' stroke-width='2' fill='none' stroke='black'
- d=' M150,80 C150,150 210,150 210,150 ' />
- <path marker-end='url(#head)' stroke-width='2' fill='none' stroke='black'
- d=' M280,150 C280,150 350,150 350,90 ' />
- <path marker-end='url(#head)' stroke-width='2' stroke='black' d='M280,150 L510,150' />
- <rect x="510" y="-70" width="80" height="40" fill="orange" stroke-width="2" stroke="black" />
- <text x="520" y="-45" font-size="18"> master </text>
- <path marker-end='url(#head)' stroke-width='2' stroke='black' d='M550,-30 L550,10' />
- <rect x="280" y="-170" width="170" height="40" fill="khaki" stroke-width="2" stroke="black" />
- <text x="290" y="-145" font-size="18"> fonctionnalite_1 </text>
- <path marker-end='url(#head)' stroke-width='2' stroke='black' d='M350,-130 L350,-90' />
- <rect x="460" y="220" width="170" height="40" fill="khaki" stroke-width="2" stroke="black" />
- <text x="470" y="245" font-size="18"> fonctionnalite_2 </text>
- <path marker-end='url(#head)' stroke-width='2' stroke='black' d='M550,220 L550,190' />
- </g>
- </svg>
|