(x, y, matrix)
| 106 | ] |
| 107 | |
| 108 | def transform(x, y, matrix): |
| 109 | (a, b, c, d, e, f) = matrix |
| 110 | return a * x + b * y + c, d * x + e * y + f |
| 111 | |
| 112 | matrix[2], matrix[5] = transform( |
| 113 | -rotn_center[0] - post_trans[0], -rotn_center[1] - post_trans[1], matrix |
no outgoing calls
no test coverage detected