Respond to CR.

This commit is contained in:
Matthew Chen 2019-02-26 13:27:54 -05:00
parent cc20182ec0
commit ac1e89ce1d
1 changed files with 2 additions and 2 deletions

View File

@ -205,11 +205,11 @@ public extension CGRect {
}
public var topRight: CGPoint {
return CGPoint(x: maxX, y: 0)
return CGPoint(x: maxX, y: minY)
}
public var bottomLeft: CGPoint {
return CGPoint(x: 0, y: maxY)
return CGPoint(x: minX, y: maxY)
}
public var bottomRight: CGPoint {