SVG:polygon要素
<polygon points="60 30, 60 250, 100 250" />
<polygon points="100,10 40,198 190,78 10,78 160,198" style="fill:lime;stroke:purple;stroke-width:5;fill-rule:nonzero;" />
points属性
x座標とy座標をカンマで区切って指定し、そのセットを半角スペースで区切っていく
それらの点をつなぎ合わせて、多角形を作っていく
fill-rule="part of the FillStroke プレゼンテーション attributes"
Color、FillStroke、Graphics、Markers
https://svg-hosting.vercel.app/api/svg?url=https://scrapbox.io/api/code/suto3/SVG:polygon要素/p.svg
code:p.svg
<!-- Example of a polygon with the default fill -->
<polygon points="0,100 50,25 50,75 100,0" />
<!-- Example of the same polygon shape with stroke and no fill -->
<polygon points="100,100 150,25 150,75 200,0" fill="none" stroke="purple" />
</svg>
SVG要素.icon