SmtC: Show me the Code
Ole Peter Smith
Instituto de Matemática e Estatística
Universidade Federal de Goiás
http://www.olesmith.com.br

SVG
O dia que bosta valesse ouro.
Os pobres todos nascerĂ£o sem c*.
Grafitti.
< Line | Rectangle | Circle >

SVG:

SVG Listing: Rectangle.svg.
<rect x="10" y="10" width="30" height="50" />

Python:

Python Listing: Rectangle.py.
    def SVG_Rectangle(self,p1,v,options={}):
        roptions=dict(options)

        roptions[ "x" ]=pt[0]
        roptions[ "y" ]=pt[1]
        
        roptions[ "width" ]=v[0]
        roptions[ "height" ]=v[1]
        
        return self.SVG_Tag("rect",roptions)
< Line | Rectangle | Circle >
Messages:
0 secs.