Using path to Render Rectangles : path « SVG « XML

Home
XML
1.CSS Style
2.SVG
3.XML Schema
4.XQuery
5.XSLT stylesheet
XML » SVG » path 
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
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.