Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to combine CGRects with each other in Swift

Tags:

ios

swift

cgrect

I was wondering if there was any way to combine a CGRect with another CGRect to get a new CGRect. Does swift have any preset functionality to do this or is there another way of achieving this?

like image 289
Zouvv Avatar asked May 29 '15 15:05

Zouvv


2 Answers

let rect1 = CGRect(x: 0, y: 0, width: 100, height: 100)
let rect2 = CGRect(x: 40, y: 40, width: 150, height: 150)
let union = rect1.union(rect2) // {x 0 y 0 w 190 h 190}

See for more:

  • https://developer.apple.com/documentation/coregraphics/cggeometry
  • https://developer.apple.com/documentation/coregraphics/cgrect
  • https://developer.apple.com/documentation/coregraphics/cgrect/1455837-union
like image 153
Mikael Hellman Avatar answered Nov 13 '22 22:11

Mikael Hellman


Swift 3 and newer:

let rect1 = CGRect(x: 0, y: 0, width: 100, height: 100)
let rect2 = CGRect(x: 40, y: 40, width: 150, height: 150)
let union = rect1.union(rect2) // {x 0 y 0 w 190 h 190}

Result is standardized, so resulting width and height are always positive:

let rect3 = CGRect(x: 0, y: 0, width: -100, height: -100)
let clone = rect3.union(rect3) // {x -100 y -100 w 100 h 100}

Documentation: https://developer.apple.com/documentation/coregraphics/cgrect/1455837-union

like image 35
Cœur Avatar answered Nov 13 '22 22:11

Cœur