three.MF.V3.Settings.Rectangle
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.