Created
April 8, 2014 07:48
-
-
Save doskoi/10100188 to your computer and use it in GitHub Desktop.
CGAffineTransformMakeSkew for make skew transform
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CGAffineTransform CGAffineTransformMakeSkew (CGFloat degree) { | |
CGAffineTransform t = CGAffineTransformIdentity; | |
t.c = (degree * M_PI / 180.0f); | |
return t; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment