((x0,y0,x1,y1))
| 164 | return x.encode(codec, 'xmlcharrefreplace') |
| 165 | |
| 166 | def bbox2str((x0,y0,x1,y1)): |
| 167 | return '%.3f,%.3f,%.3f,%.3f' % (x0, y0, x1, y1) |
| 168 | |
| 169 | def matrix2str((a,b,c,d,e,f)): |
| 170 | return '[%.2f,%.2f,%.2f,%.2f, (%.2f,%.2f)]' % (a,b,c,d,e,f) |
no outgoing calls
no test coverage detected
searching dependent graphs…