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