/ld26

To get this branch, use:
bzr branch http://9ix.org/bzr/ld26

« back to all changes in this revision

Viewing changes to svg_levels.py

  • Committer: Josh C
  • Date: 2013-04-28 23:14:19 UTC
  • Revision ID: josh@9ix.org-20130428231419-930dlct49eh71pr8
gate

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
},
59
59
""" % (x,y)
60
60
 
61
 
    sel = CSSSelector('svg|rect[ink|label="cat"]', ns)
62
 
    for e in sel(t):
63
 
        x, y = float(e.get('x')), float(e.get('y'))
64
 
 
65
 
        print """
66
 
Cat:new{
67
 
  x = %f, y = %f,
68
 
},
69
 
""" % (x,y)
70
 
 
71
61
    sel = CSSSelector('svg|rect[ink|label="fish"]', ns)
72
62
    for e in sel(t):
73
63
        x, y = float(e.get('x')), float(e.get('y'))
92
82
},
93
83
""" % (x,y,w,h)
94
84
 
95
 
    sel = CSSSelector('svg|rect[ink|label="fairy"]', ns)
96
 
    for e in sel(t):
97
 
        x, y = float(e.get('x')), float(e.get('y'))
98
 
        w, h = float(e.get('width')), float(e.get('height'))
99
 
 
100
 
        print """
101
 
Fairy:new{
102
 
  x = %f, y = %f,
103
 
  width = %f, height = %f,
104
 
},
105
 
""" % (x,y,w,h)
106
 
 
107
85
    sel = CSSSelector('svg|rect[ink|label="gatetrigger"]', ns)
108
86
    for e in sel(t):
109
87
        x, y = float(e.get('x')), float(e.get('y'))