open3d.t.geometry.VectorMetric#
- class open3d.t.geometry.VectorMetric#
- __init__(*args, **kwargs)#
Overloaded function.
__init__(self: open3d.cpu.pybind.t.geometry.VectorMetric) -> None
__init__(self: open3d.cpu.pybind.t.geometry.VectorMetric, arg0: list[open3d.cpu.pybind.t.geometry.Metric]) -> None
Copy constructor
__init__(self: open3d.cpu.pybind.t.geometry.VectorMetric, arg0: Iterable) -> None
- append(self: list[open3d.cpu.pybind.t.geometry.Metric], x: open3d.cpu.pybind.t.geometry.Metric) None #
Add an item to the end of the list
- clear(self: list[open3d.cpu.pybind.t.geometry.Metric]) None #
Clear the contents
- count(self: list[open3d.cpu.pybind.t.geometry.Metric], x: open3d.cpu.pybind.t.geometry.Metric) int #
Return the number of times
x
appears in the list
- extend(*args, **kwargs)#
Overloaded function.
extend(self: list[open3d.cpu.pybind.t.geometry.Metric], L: list[open3d.cpu.pybind.t.geometry.Metric]) -> None
Extend the list by appending all the items in the given list
extend(self: list[open3d.cpu.pybind.t.geometry.Metric], L: Iterable) -> None
Extend the list by appending all the items in the given list
- insert(self: list[open3d.cpu.pybind.t.geometry.Metric], i: int, x: open3d.cpu.pybind.t.geometry.Metric) None #
Insert an item at a given position.
- pop(*args, **kwargs)#
Overloaded function.
pop(self: list[open3d.cpu.pybind.t.geometry.Metric]) -> open3d.cpu.pybind.t.geometry.Metric
Remove and return the last item
pop(self: list[open3d.cpu.pybind.t.geometry.Metric], i: int) -> open3d.cpu.pybind.t.geometry.Metric
Remove and return the item at index
i
- remove(self: list[open3d.cpu.pybind.t.geometry.Metric], x: open3d.cpu.pybind.t.geometry.Metric) None #
Remove the first item from the list whose value is x. It is an error if there is no such item.