(points)
| 221 | if DEBUG: |
| 222 | @staticmethod |
| 223 | def _check(points): |
| 224 | if isinstance(points, np.ma.MaskedArray): |
| 225 | _api.warn_external("Bbox bounds are a masked array.") |
| 226 | points = np.asarray(points) |
| 227 | if any((points[1, :] - points[0, :]) == 0): |
| 228 | _api.warn_external("Singular Bbox.") |
| 229 | |
| 230 | def frozen(self): |
| 231 | return Bbox(self.get_points().copy()) |
no outgoing calls
no test coverage detected