polylidar.VectorDouble

class polylidar.VectorDouble

Contiguous buffer of Float64. Use np.asarray() to get to get numpy array.

__init__(*args, **kwargs)

Overloaded function.

  1. __init__(self: polylidar_pybind.VectorDouble, arg0: buffer) -> None

  2. __init__(self: polylidar_pybind.VectorDouble) -> None

  3. __init__(self: polylidar_pybind.VectorDouble, arg0: polylidar_pybind.VectorDouble) -> None

Copy constructor

  1. __init__(self: polylidar_pybind.VectorDouble, arg0: Iterable) -> None

append(self: polylidar_pybind.VectorDouble, x: float) None

Add an item to the end of the list

clear(self: polylidar_pybind.VectorDouble) None

Clear the contents

count(self: polylidar_pybind.VectorDouble, x: float) int

Return the number of times x appears in the list

extend(*args, **kwargs)

Overloaded function.

  1. extend(self: polylidar_pybind.VectorDouble, L: polylidar_pybind.VectorDouble) -> None

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

  1. extend(self: polylidar_pybind.VectorDouble, L: Iterable) -> None

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

insert(self: polylidar_pybind.VectorDouble, i: int, x: float) None

Insert an item at a given position.

pop(*args, **kwargs)

Overloaded function.

  1. pop(self: polylidar_pybind.VectorDouble) -> float

Remove and return the last item

  1. pop(self: polylidar_pybind.VectorDouble, i: int) -> float

Remove and return the item at index i

remove(self: polylidar_pybind.VectorDouble, x: float) None

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