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
A seriedade dos acontecimentos da minha época.
Me enche de esperança.
Karl Marx
< Rectangle | Circle | Ellipses >

SVG:

SVG Listing: Circle.svg.
<circle cx="70" cy="95" r="50" style="stroke: black; fill: none" />

Python:

Python Listing: Circle.py.
    def SVG_Circle(self,pc,r,options={}):
        roptions=dict(options)

        roptions[ "cx" ]=pc[0]
        roptions[ "cy" ]=pc[1]
        
        roptions[ "r" ]=r

        return self.SVG_Tag("circle",roptions)
< Rectangle | Circle | Ellipses >
Messages:
0 secs.