| 122 | } |
| 123 | |
| 124 | AffineTransform AffineTransformTranslate(const AffineTransform& t, float tx, float ty) |
| 125 | { |
| 126 | return AffineTransformMake(t.a, t.b, t.c, t.d, t.tx + t.a * tx + t.c * ty, t.ty + t.b * tx + t.d * ty); |
| 127 | } |
| 128 | |
| 129 | AffineTransform AffineTransformScale(const AffineTransform& t, float sx, float sy) |
| 130 | { |
nothing calls this directly
no test coverage detected