Created
May 10, 2017 11:04
-
-
Save WrathChaos/c6a705cb5ca729da8ed37f225972a2a2 to your computer and use it in GitHub Desktop.
Swift 3 : CGRectMake Function
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
| func CGRectMake(_ x: CGFloat, _ y: CGFloat, _ width: CGFloat, _ height: CGFloat) -> CGRect { | |
| return CGRect(x: x, y: y, width: width, height: height) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment