mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
14 lines
366 B
Swift
14 lines
366 B
Swift
import [exported] Foundation
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// NSRect
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
extension NSRect {
|
|
constructor(x : CGFloat, y : CGFloat, width : CGFloat, height : CGFloat) {
|
|
origin = CGPoint(x, y)
|
|
size = CGSize(width, height)
|
|
}
|
|
}
|
|
|