X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/e6284da03fe940ace9fe15d092f45124cb7c12d2..37b04a7ad611fe0578dc3a18248a085df7abe5e1:/displayio/_shape.py diff --git a/displayio/_shape.py b/displayio/_shape.py deleted file mode 100644 index 9fe565d..0000000 --- a/displayio/_shape.py +++ /dev/null @@ -1,46 +0,0 @@ -# SPDX-FileCopyrightText: 2020 Melissa LeBlanc-Williams for Adafruit Industries -# -# SPDX-License-Identifier: MIT - - -""" -`displayio.shape` -================================================================================ - -displayio for Blinka - -**Software and Dependencies:** - -* Adafruit Blinka: - https://github.com/adafruit/Adafruit_Blinka/releases - -* Author(s): Melissa LeBlanc-Williams - -""" - -from ._bitmap import Bitmap - -__version__ = "0.0.0-auto.0" -__repo__ = "https://github.com/adafruit/Adafruit_Blinka_displayio.git" - - -class Shape(Bitmap): - """Create a Shape object with the given fixed size. Each pixel is one bit and is stored - by the column boundaries of the shape on each row. Each row’s boundary defaults to the - full row. - """ - - def __init__( - self, width: int, height: int, *, mirror_x: bool = False, mirror_y: bool = False - ): - # pylint: disable=unused-argument - """Create a Shape object with the given fixed size. Each pixel is one bit and is - stored by the column boundaries of the shape on each row. Each row’s boundary - defaults to the full row. - """ - super().__init__(width, height, 2) - - def set_boundary(self, y: int, start_x: int, end_x: int) -> None: - # pylint: disable=unnecessary-pass - """Loads pre-packed data into the given row.""" - pass