37 lines
930 B
Python
37 lines
930 B
Python
"""
|
|
Walkway node module
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2020 Project Author Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
|
Contributor Milad milad.aghamohamadnia@concordia.ca
|
|
Contributor Guille guille.gutierrezmorote@concordia.ca
|
|
"""
|
|
|
|
from typing import List
|
|
from city_model_structure.transport.traffic_node import TrafficNode
|
|
|
|
|
|
class WalkwayNode(TrafficNode):
|
|
"""
|
|
WalkwayNode class
|
|
"""
|
|
|
|
def __init__(self, name, coordinates, edges=None, shape=None):
|
|
super().__init__(name, coordinates, edges=edges, node_type='WalkwayNode')
|
|
self._shape = shape
|
|
|
|
@property
|
|
def shape(self) -> List[List[float]]:
|
|
"""
|
|
Get the list of positions
|
|
:return: [[x, y, (z)]]
|
|
"""
|
|
return self._shape
|
|
|
|
@shape.setter
|
|
def shape(self, value):
|
|
"""
|
|
Set the list of positions
|
|
:param value: [[x, y, (z)]]
|
|
"""
|
|
self._shape = [[float(i) for i in value]]
|