* Move to start of next line (Td operator). * Translates the text line matrix and sets text matrix to it.
(tx: number, ty: number)
| 137 | * Translates the text line matrix and sets text matrix to it. |
| 138 | */ |
| 139 | moveTextPosition(tx: number, ty: number): void { |
| 140 | this.tlm = this.tlm.translate(tx, ty); |
| 141 | this.tm = this.tlm.clone(); |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Move to start of next line and set leading (TD operator). |
no test coverage detected