arcto element

Type:Images and Specials
Attributes: startangle  •  x  •  y
See:bezierto lineto moveto shape

The arcto tag may be used to draw an arc inside a shape element.

The width and height elements must be specified, and define the width and height of the ellipse the arc is to be taken from - not the width and height of the arc itself.

The startangle and endangle elements must also be specified, and define which portion of the ellipse the arc is to be taken from.

<shape width="100" height="100">
  <shapepath>
    <moveto x="20" y="20"/>
    <arcto width="120" height="120" startangle="0" endangle="90"/>
  </shapepath>
</shape>