9 lines
295 B
Python
9 lines
295 B
Python
class Road:
|
|
def __init__(self, coordinates, road_configuration):
|
|
self.coordinates = coordinates # List of tuples (x1, y1, z1) in order
|
|
self.road_configuration = road_configuration # 'road', 'highway'
|
|
self.width = 10 # TODO
|
|
|
|
def place_roads(self):
|
|
pass
|