Method
__init__
(self, bbox,
*,
cmap=None,
norm=None,
colorizer=None,
interpolation=None,
origin=None,
filternorm=True,
filterrad=4.0,
resample=False,
**kwargs
)
Source from the content-addressed store, hash-verified
| 1455 | |
| 1456 | """ |
| 1457 | def __init__(self, bbox, |
| 1458 | *, |
| 1459 | cmap=None, |
| 1460 | norm=None, |
| 1461 | colorizer=None, |
| 1462 | interpolation=None, |
| 1463 | origin=None, |
| 1464 | filternorm=True, |
| 1465 | filterrad=4.0, |
| 1466 | resample=False, |
| 1467 | **kwargs |
| 1468 | ): |
| 1469 | |
| 1470 | super().__init__( |
| 1471 | None, |
| 1472 | cmap=cmap, |
| 1473 | norm=norm, |
| 1474 | colorizer=colorizer, |
| 1475 | interpolation=interpolation, |
| 1476 | origin=origin, |
| 1477 | filternorm=filternorm, |
| 1478 | filterrad=filterrad, |
| 1479 | resample=resample, |
| 1480 | **kwargs |
| 1481 | ) |
| 1482 | self.bbox = bbox |
| 1483 | |
| 1484 | def get_window_extent(self, renderer=None): |
| 1485 | if isinstance(self.bbox, BboxBase): |
Callers
nothing calls this directly
Tested by
no test coverage detected