(self)
| 69 | self.matrix, self.linematrix)) |
| 70 | |
| 71 | def copy(self): |
| 72 | obj = PDFTextState() |
| 73 | obj.font = self.font |
| 74 | obj.fontsize = self.fontsize |
| 75 | obj.charspace = self.charspace |
| 76 | obj.wordspace = self.wordspace |
| 77 | obj.scaling = self.scaling |
| 78 | obj.leading = self.leading |
| 79 | obj.render = self.render |
| 80 | obj.rise = self.rise |
| 81 | obj.matrix = self.matrix |
| 82 | obj.linematrix = self.linematrix |
| 83 | return obj |
| 84 | |
| 85 | def reset(self): |
| 86 | self.matrix = MATRIX_IDENTITY |
no test coverage detected