This commit is contained in:
Christopher Lloyd 2015-03-29 23:00:41 -04:00
commit c0185d7525
2 changed files with 4 additions and 1 deletions

View File

@ -8,5 +8,5 @@ typedef struct {
CGFloat m41,m42,m43,m44;
} CATransform3D;
const CATransform3D CATransform3DIdentity;
CA_EXPORT const CATransform3D CATransform3DIdentity;

View File

@ -0,0 +1,3 @@
#import <QuartzCore/CATransform3D.h>
const CATransform3D CATransform3DIdentity = {1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1};