Manages the list of cameras.
|
|
__contains__(x,
y)
y in x |
|
|
|
|
__delitem__(x,
y)
del x[y] |
|
|
|
|
|
|
|
|
|
|
__setitem__(x,
i,
y)
x[i]=y |
|
|
|
bool
|
append(iCamera)
Appends a camera to the list. |
|
|
|
Camera
|
at(iName)
Returns the camera by name. |
|
|
|
None
|
|
|
bool
|
contains(iCamera)
Determines if the camera is in the list. |
|
|
|
int
|
index(iCamera)
Retrieves the index of a camera. |
|
|
|
bool
|
insert(iIndex,
iCamera)
Inserts a camera into the list. |
|
|
list{string}
|
names()
Returns the names of the cameras in the list. |
|
|
|
bool
|
remove(iIndex)
Removes a camera. |
|
|
|
bool
|
replace(iIndex,
iCamera)
Replaces a camera. |
|
|
|
int
|
size()
Returns the size of the list. |
|
|
|
None
|
swap(iIndex,
iIndex)
Swaps two cameras. |
|
|