mirror of
https://github.com/metabolist/metatext
synced 2024-12-27 02:02:38 +01: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
|
|
}
|
|
}
|