Vector2DList
Canonical path: NemAll_Python_Geometry.Vector2DList
List for Vector2D objects
__contains__
__contains__(value: Vector2D) -> bool
Check for a value in the list
Parameters:
-
value
(Vector2D
) –Value to check
Returns:
-
bool
–State for value is in the list
__delitem__
__delitem__(value: Vector2D)
__eq__
__eq__(compare_list: Vector2DList) -> bool
Compare two lists
Parameters:
-
compare_list
(Vector2DList
) –List to compare
Returns:
-
bool
–Lists are equal state
__getitem__
__getitem__(index: int) -> Vector2D
__iadd__
__iadd__(eleList: list) -> Vector2DList
Add a list
Parameters:
-
eleList
(list
) –Vector2D list
Returns:
-
Vector2DList
–Lists with the added elements
__init__
overloaded
Initialize
__init__(ele: Vector2D)
Constructor with a list of Vector2D
Parameters:
-
eleList
(list
) –Vector2D list
__setitem__
__setitem__(index: int | slice, value: Vector2D)
Set a list item
Parameters:
-
index
(int | slice
) –Index of the item
-
value
(Vector2D
) –Value to item
extend
overloaded
extend(iterable: Vector2DList)
Add the items from an iterable to the end of the list
Parameters:
-
iterable
(Vector2DList
) –Iterable to add
Extend the list
Parameters:
-
eleList
(list
) –Vector2D list
Placeholder