예제 #1
0
파일: __init__.py 프로젝트: Akanksha18/eden
 def __init__ (self, **attr):
     GroupableElement.__init__ (self, name = 'svg', **attr)
     BoxElement.__init__ (self, name = 'svg', **attr)
     if attr.has_key ('viewBox'):
         self.viewBox = attr['viewBox']
     else:
         self.viewBox = None
예제 #2
0
 def __init__(self, **attr):
     GroupableElement.__init__(self, name='defs', **attr)
예제 #3
0
파일: defs.py 프로젝트: Koperj/SahanaEden
 def __init__ (self, **attr):
     GroupableElement.__init__ (self, name = 'defs', **attr)
예제 #4
0
 def __init__(self, **attr):
     GroupableElement.__init__(self, name='symbol', **attr)
     if attr.has_key('viewBox'):
         self.viewBox = attr['viewBox']
     else:
         self.viewBox = None