Skip to content

Instantly share code, notes, and snippets.

@alistra
Created March 6, 2013 14:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save alistra/5099553 to your computer and use it in GitHub Desktop.
Save alistra/5099553 to your computer and use it in GitHub Desktop.
NSString *NSStringFromCATransform3D(CATransform3D t) {
return [NSString stringWithFormat:@"CATransform3D {\n%lf %lf %lf %lf\n%lf %lf %lf %lf\n%lf %lf %lf %lf\n%lf %lf %lf %lf\n}", t.m11, t.m12, t.m13, t.m14, t.m21, t.m22, t.m23, t.m24, t.m31, t.m32, t.m33, t.m34, t.m41, t.m42, t.m43, t.m44];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment