Added missing type for Labelled Point

This commit is contained in:
Daniel 2024-02-29 10:40:17 +01:00 committed by Blyron
parent 7b2c1db39b
commit f275e47f4e
1 changed files with 1 additions and 2 deletions

View File

@ -1563,14 +1563,13 @@ class LabelledPoint():
"""Class that represent a position in space with a semantic label.""" """Class that represent a position in space with a semantic label."""
# region Instance Variables # region Instance Variables
# TODO 类型未定义
@property @property
def location() -> Location: def location() -> Location:
"""Position in 3D space.""" """Position in 3D space."""
... ...
@property @property
def label(): def label() -> CityObjectLabel:
"""Semantic tag of the point.""" """Semantic tag of the point."""
... ...
# endregion # endregion