cloudViewer.pipelines.registration.PoseGraphEdgeVector#
- class cloudViewer.pipelines.registration.PoseGraphEdgeVector#
Vector of PoseGraphEdge
- __init__(*args, **kwargs)#
Overloaded function.
__init__(self: cloudViewer.pipelines.registration.PoseGraphEdgeVector) -> None
__init__(self: cloudViewer.pipelines.registration.PoseGraphEdgeVector, arg0: cloudViewer.pipelines.registration.PoseGraphEdgeVector) -> None
Copy constructor
__init__(self: cloudViewer.pipelines.registration.PoseGraphEdgeVector, arg0: collections.abc.Iterable) -> None
- append(self: cloudViewer.pipelines.registration.PoseGraphEdgeVector, x: cloudViewer.pipelines.registration.PoseGraphEdge) None#
Add an item to the end of the list
- clear(self: cloudViewer.pipelines.registration.PoseGraphEdgeVector) None#
Clear the contents
- extend(*args, **kwargs)#
Overloaded function.
extend(self: cloudViewer.pipelines.registration.PoseGraphEdgeVector, L: cloudViewer.pipelines.registration.PoseGraphEdgeVector) -> None
Extend the list by appending all the items in the given list
extend(self: cloudViewer.pipelines.registration.PoseGraphEdgeVector, L: collections.abc.Iterable) -> None
Extend the list by appending all the items in the given list
- insert(self: cloudViewer.pipelines.registration.PoseGraphEdgeVector, i: SupportsInt, x: cloudViewer.pipelines.registration.PoseGraphEdge) None#
Insert an item at a given position.
- pop(*args, **kwargs)#
Overloaded function.
pop(self: cloudViewer.pipelines.registration.PoseGraphEdgeVector) -> cloudViewer.pipelines.registration.PoseGraphEdge
Remove and return the last item
pop(self: cloudViewer.pipelines.registration.PoseGraphEdgeVector, i: typing.SupportsInt) -> cloudViewer.pipelines.registration.PoseGraphEdge
Remove and return the item at index
i