8 lines
144 B
Python
8 lines
144 B
Python
|
|
class Line(Shape):
|
|
def __init__(self, x0, y0, x1, y1):
|
|
self.x0 = x0
|
|
self.y0 = y0
|
|
self.x1 = x1
|
|
self.y1 = y1
|