* Modify current transformation matrix (cm operator). * Prepends the given matrix to the CTM.
(a: number, b: number, c: number, d: number, e: number, f: number)
| 232 | * Prepends the given matrix to the CTM. |
| 233 | */ |
| 234 | concatMatrix(a: number, b: number, c: number, d: number, e: number, f: number): void { |
| 235 | const newMatrix = new Matrix(a, b, c, d, e, f); |
| 236 | this.ctm = newMatrix.multiply(this.ctm); |
| 237 | } |
| 238 | |
| 239 | /** |
| 240 | * Calculate the bounding box for a character at the current position. |