Spline2DList
Canonical path: NemAll_Python_Geometry.Spline2DList
List for Spline2D objects
__contains__
__contains__(value: Spline2D) -> bool
Check for a value in the list
Parameters:
-
value
(Spline2D
) –Value to check
Returns:
-
bool
–State for value is in the list
__delitem__
__delitem__(value: Spline2D)
__getitem__
__getitem__(index: int) -> Spline2D
__setitem__
__setitem__(index: int | slice, value: Spline2D)
Set a list item
Parameters:
-
index
(int | slice
) –Index of the item
-
value
(Spline2D
) –Value to item
extend
extend(iterable: Spline2DList)
Add the items from an iterable to the end of the list
Parameters:
-
iterable
(Spline2DList
) –Iterable to add
Placeholder