| 35 | { |
| 36 | |
| 37 | AffineTransform AffineTransformMake(float a, float b, float c, float d, float tx, float ty) |
| 38 | { |
| 39 | AffineTransform t; |
| 40 | t.a = a; |
| 41 | t.b = b; |
| 42 | t.c = c; |
| 43 | t.d = d; |
| 44 | t.tx = tx; |
| 45 | t.ty = ty; |
| 46 | return t; |
| 47 | } |
| 48 | |
| 49 | Vec2 PointApplyAffineTransform(const Vec2& point, const AffineTransform& t) |
| 50 | { |
no outgoing calls
no test coverage detected