Skip to content

Instantly share code, notes, and snippets.

@jeffery812
Last active February 29, 2020 10:20
Show Gist options
  • Save jeffery812/34f8add6423365690bc36bee01f4e5b8 to your computer and use it in GitHub Desktop.
Save jeffery812/34f8add6423365690bc36bee01f4e5b8 to your computer and use it in GitHub Desktop.
public extension CGSize {
public func rescale(_ scale: CGFloat) -> CGSize {
return applying(CGAffineTransform(scaleX: scale, y: scale))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment