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