Skip to content

Instantly share code, notes, and snippets.

@bittz
Last active March 21, 2016 13:10
Show Gist options
  • Save bittz/29c7c0f2c059f0f8c198 to your computer and use it in GitHub Desktop.
Save bittz/29c7c0f2c059f0f8c198 to your computer and use it in GitHub Desktop.
Square CGSize
import CoreGraphics
extension CGSize {
public init(side: CGFloat) {
width = side
height = side
}
public init(side: Double) {
width = CGFloat(side)
height = CGFloat(side)
}
public init(side: Int) {
width = CGFloat(side)
height = CGFloat(side)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment