10 lines
194 B
Swift
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)
|
|
}
|
|
}
|