/ld26

To get this branch, use:
bzr branch /bzr/ld26

« back to all changes in this revision

Viewing changes to svg_levels.py

  • Committer: Josh C
  • Date: 2013-04-28 22:00:27 UTC
  • Revision ID: josh@9ix.org-20130428220027-uneuwd3am4wl6klk
GET FISH

Show diffs side-by-side

added added

removed removed

56
56
},
57
57
""" % (x,y)
58
58
 
 
59
    sel = CSSSelector('svg|rect[ink|label="fish"]', ns)
 
60
    for e in sel(t):
 
61
        x, y = float(e.get('x')), float(e.get('y'))
 
62
        w, h = float(e.get('width')), float(e.get('height'))
 
63
 
 
64
        print """
 
65
Fish:new{
 
66
  x = %f, y = %f,
 
67
  width = %f, height = %f,
 
68
},
 
69
""" % (x,y,w,h)
 
70
 
 
71
 
59
72
    print '},'
60
73
 
61
74
print '}'