three.MF.V3.Settings.Rectangle

 1class Rectangle:
 2
 3    """
 4     Rectangle settings.
 5    """
 6    def __init__(self, x: int, y: int, width: int, height: int):
 7        # Rectangle x offset.
 8        self.x = x
 9        # Rectangle y offset.
10        self.y = y
11        # Rectangle width.
12        self.width = width
13        # Rectangle height.
14        self.height = height
class Rectangle:
 2class Rectangle:
 3
 4    """
 5     Rectangle settings.
 6    """
 7    def __init__(self, x: int, y: int, width: int, height: int):
 8        # Rectangle x offset.
 9        self.x = x
10        # Rectangle y offset.
11        self.y = y
12        # Rectangle width.
13        self.width = width
14        # Rectangle height.
15        self.height = height

Rectangle settings.

Rectangle(x: int, y: int, width: int, height: int)
 7    def __init__(self, x: int, y: int, width: int, height: int):
 8        # Rectangle x offset.
 9        self.x = x
10        # Rectangle y offset.
11        self.y = y
12        # Rectangle width.
13        self.width = width
14        # Rectangle height.
15        self.height = height
x
y
width
height