Skip to content

Instantly share code, notes, and snippets.

@douglashill
Forked from alistra/gist:5099553
Last active December 23, 2015 08:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save douglashill/6607468 to your computer and use it in GitHub Desktop.
Save douglashill/6607468 to your computer and use it in GitHub Desktop.
NSStringFromCATransform3D
NSString * NSStringFromCATransform3D(CATransform3D t)
{
return [NSString stringWithFormat:@"CATransform3D {\n% 7.2f % 7.2f % 7.2f % 7.2f\n% 7.2f % 7.2f % 7.2f % 7.2f\n% 7.2f % 7.2f % 7.2f % 7.2f\n% 7.2f % 7.2f % 7.2f % 7.2f\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