mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-22 16:21:00 +00:00
10 lines
213 B
Swift
10 lines
213 B
Swift
|
// Copyright © 2021 Metabolist. All rights reserved.
|
||
|
|
||
|
import CoreGraphics
|
||
|
|
||
|
extension CGRect {
|
||
|
var containsNaN: Bool {
|
||
|
origin.x.isNaN || origin.y.isNaN || size.width.isNaN || size.height.isNaN
|
||
|
}
|
||
|
}
|