14 lines
288 B
Python
14 lines
288 B
Python
|
|
||
|
class BoundingBox:
|
||
|
def __init__(self, x, y, width, height):
|
||
|
self.x = x
|
||
|
self.y = y
|
||
|
self.width = width
|
||
|
self.height = height
|
||
|
|
||
|
def get_dimensions(self):
|
||
|
return self.width, self.height
|
||
|
|
||
|
def get_position(self):
|
||
|
return self.x, self.y
|