--- title: slug: Web/SVG/Element/hatchpath tags: - Element - Experimental - Filters - Reference - SVG translation_of: Web/SVG/Element/hatchpath ---
{{SVGRef}}{{SeeCompatTable}}

<hatchpath>SVG の要素で、 {{SVGElement("hatch")}} 要素で使用されるハッチパスを定義します。

使用場所

{{svginfo}}

属性

グローバル属性

固有の属性

DOM インターフェイス

この要素は {{domxref("SVGHatchpathElement")}} インターフェイスを実装しています。

SVG

<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <hatch id="hatch" hatchUnits="userSpaceOnUse" pitch="5"
        rotate="135">
      <hatchpath stroke="#a080ff" stroke-width="2"/>
    </hatch>
  </defs>

  <rect fill="url(#hatch)" stroke="black" stroke-width="2"
     x="10%" y="10%" width="80%" height="80%" />
</svg>

結果

{{EmbedLiveSample("Example", 200, 200)}}

ブラウザーの互換性

{{Compat("svg.elements.hatchpath")}}

関連情報