ポリゴンで '塗りつぶし'を使用する点を除いて、4点の間で領域を塗りつぶす方法はありますか? 私はsvgの4つの線の間の領域の塗りつぶし
<line x1="0" y1="0" x2="300" y2="0" style="stroke:rgb(255,0,0);stroke-width:2"></line>
<line x1="300" y1="0" x2="300" y2="150" style="stroke:rgb(255,0,0);stroke-width:2"></line>
<line x1="300" y1="150" x2="0" y2="150" style="stroke:rgb(255,0,0);stroke-width:2"></line>
<line x1="0" y1="150" x2="0" y2="0" style="stroke:rgb(255,0,0);stroke-width:2"></line>
、として4本のラインを使用してポリゴンを描画されていると私はこれらの線の間の領域を色付けしたいです。
私はすでに答えを得ています。ご協力いただきありがとうございます。 –
注意: 'rect'、' polyline'、さらには 'polygon'、' path'のいずれかで描画しても、ジョブを実行することができます。 SVG要素とシェイプについてのチュートリアルはhttp://tutorials.jenkov.com/svg/index.htmlを参照してください。さらに詳しい「raw」ドキュメントについては、https://developer.mozilla.org/en-US/docs/を参照してください。 Web/SVG –