summer_course_2024/city_model_structure/tree.py
2020-06-16 15:14:23 -04:00

32 lines
247 B
Python

@property
def height(self):
"""
Get height of tree
:return: height
"""
return self._height
@property
def canopy(self):
"""
Get canopy of tree
:return: canopy
"""
return self._canopy