Point

Properties


Methods

update

update(
   coords: Optional[List] = None, label: Optional[Label] = None
)

Description

Update this point with new coords or new label.

Examples

point.update(coords=[0, 0])

Arguments

  • coords (List, optional) : New coords of this point (list of 2 int). Defaults to None.

  • label (Label, optional) : New label of this point. Defaults to None.


delete

delete()

Description

Delete this point from the platform.

:warning: DANGER ZONE: Be very careful here!

Examples

point.delete()