Apple CGAffineTransform defined by the letters: a, b, c, d for a matrix member (except for the translation part).
struct CGAffineTransform { CGFloat a; CGFloat b; CGFloat c; CGFloat d; CGFloat tx; CGFloat ty; };
At the same time, MonoTouch uses more .NET-like (e.g. System.Drawing) naming conventions: xx, yx, xy, yy.
public struct CGAffineTransform { public float xx;
This makes it easy to port existing code to C #.
source share