Skip to content

Commit

Permalink
Fix backwards matrix multiplication
Browse files Browse the repository at this point in the history
  • Loading branch information
KurtCode committed Nov 26, 2012
1 parent 143f816 commit 7fa85ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PDFKitten/Scanner.m
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ void cm(CGPDFScannerRef scanner, void *info)

RenderingState *state = [(Scanner *)info currentRenderingState];
CGAffineTransform t = CGAffineTransformMake(a, b, c, d, tx, ty);
state.ctm = CGAffineTransformConcat(state.ctm, t);
state.ctm = CGAffineTransformConcat(t, state.ctm);
}


Expand Down

0 comments on commit 7fa85ef

Please sign in to comment.