32 lines
247 B
Python
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
|
|
|