Using polygon to Render Rectangles : polygon « SVG « XML

Home
XML
1.CSS Style
2.SVG
3.XML Schema
4.XQuery
5.XSLT stylesheet
XML » SVG » polygon 
Using polygon 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)">
    <polygon points="0,0 150,0 150,50 0,50" style="fill:red;" />
  </g>

</svg>

 
Related examples in the same category
1.Rendering Triangular Wedges with Shading
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.