open3d.utility.DoubleVector

class open3d.utility.DoubleVector

Convert float64 numpy array of shape (n,) to Open3D format.

__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: open3d.utility.DoubleVector, arg0: buffer) -> None

  2. __init__(self: open3d.utility.DoubleVector) -> None

  3. __init__(self: open3d.utility.DoubleVector, arg0: open3d.utility.DoubleVector) -> None

Copy constructor

  1. __init__(self: open3d.utility.DoubleVector, arg0: iterable) -> None

append(self: open3d.utility.DoubleVector, x: float) → None

Add an item to the end of the list

count(self: open3d.utility.DoubleVector, x: float) → int

Return the number of times x appears in the list

extend(*args, **kwargs)

Overloaded function.

  1. extend(self: open3d.utility.DoubleVector, L: open3d.utility.DoubleVector) -> None

Extend the list by appending all the items in the given list

  1. extend(self: open3d.utility.DoubleVector, L: iterable) -> None

Extend the list by appending all the items in the given list

insert(self: open3d.utility.DoubleVector, i: int, x: float) → None

Insert an item at a given position.

pop(*args, **kwargs)

Overloaded function.

  1. pop(self: open3d.utility.DoubleVector) -> float

Remove and return the last item

  1. pop(self: open3d.utility.DoubleVector, i: int) -> float

Remove and return the item at index i

remove(self: open3d.utility.DoubleVector, x: float) → None

Remove the first item from the list whose value is x. It is an error if there is no such item.