bezierto element

Type:Images and Specials
Attributes: cx1  •  x  •  y
See:arcto lineto moveto shape

The bezierto tag may be used to draw a bezier curve from the current cursor to the specified position inside a shape element.

The x and y attributes determine where the curve will end, and must be specified. In addition the cx1, cy1, cx2 and cy2 attributes are mandatory and specify the control points for the bezier curve.

<shape width="100" height="100">
  <shapepath>
    <moveto x="20" y="20"/>
    <bezierto cx1="70" cy1="30" cx2="30" cy2="70" x="80" y="80"/>
  </shapepath>
</shape>