¿¹Á¦
<g
fill="none" stroke="black" stroke-width="3" > <path d="... º°¸ð¾ç ..." /> <path d="... ¿ø 2°³ - °°Àº ¹æÇâ ..." /> <path d="... ¿ø 2°³ - ¹Ý´ë ¹æÇâ ..." /> </g> |
|
* Non-zero winding rule <g fill-rule="nonzero" fill="red" stroke="black" stroke-width="3" > |
|
* Even-odd rule <g fill-rule="evenodd" fill="red" stroke="black" stroke-width="3" > |
|
¿¹Á¦
<line x1="20" x2="80" y1="25" y2="25" fill="none" stroke="black" stroke-width="20" stroke-linecap="butt" />
...<path d="M 20,60 L 50,20 L 80,60" fill="none" stroke="black" stroke-width="20" stroke-linejoin="miter" />
...
¿¹Á¦
<svg width="4in" height="2in" viewBox="0 0 4000 2000"> <defs> <marker id="Triangle" viewBox="0 0 10 10" refX="0" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto"> <path d="M 0 0 L 10 5 L 0 10 z" /> </marker> </defs> <rect x="10" y="10" width="3980" height="1980" fill="none" stroke="blue" stroke-width="10" /> <path d="M 1000 750 L 2000 750 L 2500 1250" fill="none" stroke="black" stroke-width="100" marker-end="url(#Triangle)" /> </svg> |