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
Deus não se preocupe das nossas dificuldades matemáticas.
Ele integra empiricamente.
Einstein.
< Group | Use | Convert >

SVG, insert Group:

SVG Listing: Use.svg.
<use xlink:href="#house" x="70" y="100"/>

Python:

Python Listing: Use.py.
   def SVG_Use(self,group,pt,options={}):
        roptions=dict(options)

        roptions[ "xlink:href" ]="#"+gid
        
        roptions[ "x" ]=pt[0]
        roptions[ "y" ]=pt[1]
        
        return self.SVG_Tags(
            "group",
            self.SVG_Tags("desc",description)+svg,
            roptions
        )
< Group | Use | Convert >
Messages:
0 secs.