(self, a1, b1, c1, d1, e1, f1)
| 395 | |
| 396 | # concat-matrix |
| 397 | def do_cm(self, a1, b1, c1, d1, e1, f1): |
| 398 | self.ctm = mult_matrix((a1,b1,c1,d1,e1,f1), self.ctm) |
| 399 | self.device.set_ctm(self.ctm) |
| 400 | return |
| 401 | |
| 402 | # setlinewidth |
| 403 | def do_w(self, linewidth): |
nothing calls this directly
no test coverage detected