OpenMaya.MObjectArray Class Reference
Array of MObject values.
The MObjectArray class provides an array of MObject elements using a common array interface and reference semantics. See Working with M*Array Classes for more details.
OpenMaya.MObjectArray.__init__ |
( |
| ) |
|
x.__init__(...) initializes x; see help(type(x)) for signature
OpenMaya.MObjectArray.__add__ |
( |
| ) |
|
OpenMaya.MObjectArray.__contains__ |
( |
| ) |
|
x.__contains__(y) <==> y in x
OpenMaya.MObjectArray.__delitem__ |
( |
| ) |
|
x.__delitem__(y) <==> del x[y]
OpenMaya.MObjectArray.__delslice__ |
( |
| ) |
|
x.__delslice__(i, j) <==> del x[i:j]
Use of negative indices is not supported.
OpenMaya.MObjectArray.__getitem__ |
( |
| ) |
|
x.__getitem__(y) <==> x[y]
OpenMaya.MObjectArray.__getslice__ |
( |
| ) |
|
x.__getslice__(i, j) <==> x[i:j]
Use of negative indices is not supported.
OpenMaya.MObjectArray.__iadd__ |
( |
| ) |
|
OpenMaya.MObjectArray.__imul__ |
( |
| ) |
|
OpenMaya.MObjectArray.__len__ |
( |
| ) |
|
OpenMaya.MObjectArray.__mul__ |
( |
| ) |
|
OpenMaya.MObjectArray.__repr__ |
( |
| ) |
|
x.__repr__() <==> repr(x)
OpenMaya.MObjectArray.__rmul__ |
( |
| ) |
|
OpenMaya.MObjectArray.__setitem__ |
( |
| ) |
|
x.__setitem__(i, y) <==> x[i]=y
OpenMaya.MObjectArray.__setslice__ |
( |
| ) |
|
x.__setslice__(i, j, y) <==> x[i:j]=y
Use of negative indices is not supported.
OpenMaya.MObjectArray.__str__ |
( |
| ) |
|
OpenMaya.MObjectArray.append |
( |
| ) |
|
Add a value to the end of the array.
OpenMaya.MObjectArray.clear |
( |
| ) |
|
Remove all elements from the array.
OpenMaya.MObjectArray.copy |
( |
| ) |
|
Replace the array contents with that of another or of a compatible Python sequence.
OpenMaya.MObjectArray.insert |
( |
| ) |
|
Insert a new value into the array at the given index.
OpenMaya.MObjectArray.remove |
( |
| ) |
|
Remove an element from the array.
OpenMaya.MObjectArray.setLength |
( |
| ) |
|
Grow or shrink the array to contain a specific number of elements.
OpenMaya.MObjectArray.sizeIncrement |
|
static |
Number of elements by which to grow the array when necessary.