Files
GDMC-2024/networks/roads/Road.py
2024-05-26 18:37:33 +02:00

8 lines
225 B
Python

class Road:
def __init__(self, coordinates):
self.coordinates = coordinates # List of tuples (x1, y1, z1) in order
self.road_type = road_type # 'road', 'highway'
def place_roads(self):
pass