Using path to Render Rectangles : path « SVG « XML






Using path to Render Rectangles



<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN"
 "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">

<svg width="100%" height="100%">

  <!-- draw rectangle -->
  <g transform="translate(50,50)">
    <path d="M0,0 150,0 150,50 0,50" style="fill:red;" />
  </g>

</svg>

The uppercase M refers to an absolute point
Use a lowercase m if you need to specify a point in the plane that is relative to the preceding point.

 








Related examples in the same category

1.Coloring Elliptic Arcs
2.Arc-Based Petal Patterns
3.Rendering a Quadratic Bezier Curve