Rectangle.py 161 B

1234567
  1. class Rectangle:
  2. def __init__(self, x, y, width, height):
  3. self.x = x;
  4. self.y = y;
  5. self.width = width;
  6. self.height = height;