Files
2020-07-25 18:56:08 +02:00

10 lines
194 B
Swift

import Foundation
import SwiftUI
extension CGRect {
// Return the coordinate for a rectangle center
public var mid: CGPoint {
return CGPoint(x: self.midX, y: self.midY)
}
}