Added missing type for Labelled Point
This commit is contained in:
parent
7b2c1db39b
commit
f275e47f4e
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue