Cone3DList
    
    Canonical path: NemAll_Python_Geometry.Cone3DList
  
Methods:
- 
            
__contains__–Check for a value in the list
 - 
            
__delitem__–Delete a list item
 - 
            
__getitem__–Get a list item
 - 
            
__init__–Initialize
 - 
            
__iter__–List iterator
 - 
            
__len__–Get the list length
 - 
            
__repr__–Convert the list to a string
 - 
            
__setitem__–Set a list item
 - 
            
append–Append a list item
 - 
            
extend–Add the items from an iterable to the end of the list
 
            __contains__
__contains__(value: Cone3D) -> bool
Check for a value in the list
Parameters:
- 
            
value(Cone3D) –Value to check
 
Returns:
- 
              
bool–State for value is in the list
 
            __delitem__
__delitem__(value: Cone3D)
            __getitem__
__getitem__(index: int) -> Cone3D
            __setitem__
__setitem__(index: int | slice, value: Cone3D)
            extend
extend(iterable: Cone3DList)
Add the items from an iterable to the end of the list
Parameters:
- 
            
iterable(Cone3DList) –Iterable to add
 
Placeholder