| 740 | |
| 741 | |
| 742 | class PyCodecState: |
| 743 | def __init__(self) -> None: |
| 744 | self.xsize = 0 |
| 745 | self.ysize = 0 |
| 746 | self.xoff = 0 |
| 747 | self.yoff = 0 |
| 748 | |
| 749 | def extents(self) -> tuple[int, int, int, int]: |
| 750 | return self.xoff, self.yoff, self.xoff + self.xsize, self.yoff + self.ysize |
| 751 | |
| 752 | |
| 753 | class PyCodec: |
no outgoing calls
no test coverage detected
searching dependent graphs…